| 123456789101112131415161718 |
- //
- // System.Threading.Timeout.cs
- //
- // Author:
- // Dick Porter ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Threading
- {
- public sealed class Timeout
- {
- private Timeout () {}
- public const int Infinite=-1;
- }
- }
|