PersonalizationStateInfoCollection.Count 属性

定义

获取集合中项的数目。

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

属性值

Int32

集合中的项数。

实现

示例

下面的代码示例演示如何使用该 Count 属性。

  PersonalizationStateInfoCollection findresult;
findresult = PersonalizationAdministration.FindUserState(null, TextBox3.Text);
if (findresult.Count != 0)
{
    Label4.Text = findresult.Count + "  user(s) found";
    Label4.Visible = true;
}

注解

集合中的项计数可用于循环访问集合,如示例中所示。

适用于