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

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


namespace System.Threading
{
	public sealed class Timeout
	{
		private Timeout () {}
		public const int Infinite=-1;
	}
}