singrdk/base/Kernel/System/EventArgs.cs

24 lines
611 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// 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.
//| <include path='docs/doc[@for="EventArgs"]/*' />
public class EventArgs {
//| <include path='docs/doc[@for="EventArgs.Empty"]/*' />
public static readonly EventArgs Empty = new EventArgs();
//| <include path='docs/doc[@for="EventArgs.EventArgs"]/*' />
public EventArgs()
{
}
}
}