Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EventHandler.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 407255b604e0464986e8b272cdec5afa77788d65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// System.EventHandler.cs
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

namespace System {

	public delegate void EventHandler (object sender, EventArgs e);

}