You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
498 B

3 years ago
  1. #if NET20
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace System
  6. {
  7. // /// <summary>表示当事件提供数据时将处理该事件的方法。</summary>
  8. // /// <typeparam name="TEventArgs">事件生成的事件数据的类型。</typeparam>
  9. // /// <param name="sender">事件源。</param>
  10. // /// <param name="e">包含事件数据的对象。</param>
  11. // public delegate void EventHandler<TEventArgs>(object sender, TEventArgs e);
  12. }
  13. #endif