Method | Description | |
---|---|---|
CountdownEvent ( int initialCount ) : System.Threading |
Construct a CountdownEvent
|
|
Signal ( ) : void |
Decrement the count by one
|
|
Wait ( ) : void |
Block the thread until the count reaches zero
|
public CountdownEvent ( int initialCount ) : System.Threading | ||
initialCount | int | The initial count |
return | System.Threading |