CountdownEvent.AddCount 方法

定义

CountdownEvent 的当前计数。

重载

AddCount()

CountdownEvent 的当前计数加 1。

AddCount(Int32)

CountdownEvent 的当前计数增加指定值。

AddCount()

Source:
CountdownEvent.cs
Source:
CountdownEvent.cs
Source:
CountdownEvent.cs

CountdownEvent 的当前计数加 1。

public:
 void AddCount();
public void AddCount ();
member this.AddCount : unit -> unit
Public Sub AddCount ()

例外

已释放当前实例。

当前实例已设置 。

CurrentCount 等于或大于 Int32.MaxValue

另请参阅

适用于

AddCount(Int32)

Source:
CountdownEvent.cs
Source:
CountdownEvent.cs
Source:
CountdownEvent.cs

CountdownEvent 的当前计数增加指定值。

public:
 void AddCount(int signalCount);
public void AddCount (int signalCount);
member this.AddCount : int -> unit
Public Sub AddCount (signalCount As Integer)

参数

signalCount
Int32

CurrentCount 的增量值。

例外

已释放当前实例。

signalCount 小于或等于 0。

当前实例已设置 。

CurrentCount在计数递signalCount增后等于或大于 Int32.MaxValue

另请参阅

适用于