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

MethodInvoker.cs « System.Windows.Forms « System.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96b0ac9472dfec83726c500484977b7fb60083d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// System.Windows.Forms.MethodInvoker.cs
//
// Authors:
//   Jaak Simm (jaaksimm@firm.ee)
//   Dennis Hayes (dennish@Raytek.com)
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//

namespace System.Windows.Forms
{
	/// <summary>
	/// Represents the method that handles the Invoke event for a method.
	/// </summary>
	[Serializable]
	public delegate void MethodInvoker();
}