using System; namespace System { /// Represents the method that will handle an event. /// The source of the event. /// An that contains the event data. /// The type of the event data generated by the event. /// 1 // Token: 0x020006EB RID: 1771 // (Invoke) Token: 0x06004234 RID: 16948 [Serializable] public delegate void EventHandler(object sender, TEventArgs e) where TEventArgs : EventArgs; }