CountdownEvent.AddCount 方法   
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 CountdownEvent 的当前计数。
重载
| AddCount() | 将 CountdownEvent 的当前计数加 1。 | 
| AddCount(Int32) | 将 CountdownEvent 的当前计数增加指定值。 | 
AddCount()
- Source:
- CountdownEvent.cs
- Source:
- CountdownEvent.cs
- Source:
- CountdownEvent.cs
- Source:
- CountdownEvent.cs
将 CountdownEvent 的当前计数加 1。
public:
 void AddCount();public void AddCount();member this.AddCount : unit -> unitPublic Sub AddCount ()例外
已释放当前实例。
另请参阅
适用于
AddCount(Int32)
- Source:
- CountdownEvent.cs
- Source:
- CountdownEvent.cs
- Source:
- CountdownEvent.cs
- Source:
- CountdownEvent.cs
将 CountdownEvent 的当前计数增加指定值。
public:
 void AddCount(int signalCount);public void AddCount(int signalCount);member this.AddCount : int -> unitPublic Sub AddCount (signalCount As Integer)参数
- signalCount
- Int32
CurrentCount 的增量值。
例外
已释放当前实例。
              signalCount 小于或等于 0。