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

AsyncCallback.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba9ead8e6f2b04b32e0b962c55fbcec36ab67429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//
// System/AsyncCallback.cs
//
// Author:
//   Paolo Molaro (lupus@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

namespace System {
	public delegate void AsyncCallback (IAsyncResult ar);
}