// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*
* Information Contained Herein is Proprietary and Confidential.
*/
namespace System {
using System;
// The base class for all event classes.
//|
public class EventArgs {
//|
public static readonly EventArgs Empty = new EventArgs();
//|
public EventArgs()
{
}
}
}