Timeout.cs 256 B

123456789101112131415161718
  1. //
  2. // System.Threading.Timeout.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 sealed class Timeout
  12. {
  13. private Timeout () {}
  14. public const int Infinite=-1;
  15. }
  16. }