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

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


namespace System.Threading
{
	public delegate void WaitOrTimerCallback(object state, bool timedOut);
}