15 lines
342 B
C#
15 lines
342 B
C#
// ==++==
|
|
//
|
|
// 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);
|
|
}
|