System.Threading class stubs.
[mono.git] / mcs / class / corlib / System.Threading / WaitOrTimerCallback.cs
1 //
2 // System.Threading.WaitOrTimerCallback.cs
3 //
4 // Author:
5 //   Dick Porter (dick@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10
11 namespace System.Threading
12 {
13         public delegate void WaitOrTimerCallback(object state, bool timedOut);
14 }