System.Threading.CountdownEvent.CountdownEvent C# (CSharp) 메소드

CountdownEvent() 공개 메소드

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