ConfigurationLockCollection.Count 属性

定义

获取集合中包含的锁定配置对象的数目。

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

属性值

集合中包含的锁定配置对象的数目。

实现

示例

下面的代码示例演示如何使用 Count 属性。 此代码示例是为 ConfigurationLockCollection 类提供的一个更大示例的一部分。

// Count property.
Console.WriteLine("Collection Count: {0}",
 lockedAttribList.Count);
' Count property.
Console.WriteLine("Collection Count: {0}", _
 lockedAttribList.Count)

适用于