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

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