ConcurrentQueue<T>.Count 属性

定义

获取 ConcurrentQueue<T> 中包含的元素数。

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer

属性值

ConcurrentQueue<T> 中包含的元素数。

实现

注解

若要确定集合是否包含任何项,建议使用 IsEmpty 属性,而不是从 Count 属性检索项数并将其与 0 进行比较。

适用于

另请参阅