System.Threading.CountdownEvent.CountdownEvent C# (CSharp) Method

CountdownEvent() public method

public CountdownEvent ( int count ) : System
count int
return System
		public CountdownEvent (int count)
		{
			if (count < 0)
				throw new ArgumentOutOfRangeException ("count is negative");
			this.initial = this.count = count;
		}