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