singrdk/base/Kernel/System/EventHandler.cs

15 lines
342 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;
//| <include path='docs/doc[@for="EventHandler"]/*' />
public delegate void EventHandler(Object sender, EventArgs e);
}