2
0

WaitCallback.cs 220 B

1234567891011121314
  1. //
  2. // System.Threading.WaitCallback.cs
  3. //
  4. // Author:
  5. // Dick Porter ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Threading
  10. {
  11. public delegate void WaitCallback(object state);
  12. }