using System;
using System.Runtime.InteropServices;
namespace System
{
/// Represents the method that will handle an event that has no event data.
/// The source of the event.
/// An that contains no event data.
/// 1
// Token: 0x020006EC RID: 1772
// (Invoke) Token: 0x06004238 RID: 16952
[ComVisible(true)]
[Serializable]
public delegate void EventHandler(object sender, EventArgs e);
}