using System;
using System.Runtime.InteropServices;
namespace System
{
///
/// is the base class for classes containing event data.
/// 1
// Token: 0x02000669 RID: 1641
[ComVisible(true)]
[Serializable]
public class EventArgs
{
/// Represents an event with no event data.
/// 1
// Token: 0x040018FC RID: 6396
public static readonly EventArgs Empty = new EventArgs();
}
}