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

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


namespace System.Threading
{
	public delegate void TimerCallback(object state);
}