DesignerCollection.Count プロパティ

定義

コレクション内のデザイナーの数を取得します。

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

プロパティ値

コレクション内のデザイナーの数。

実装

次のコード例では、コレクション内の要素の数を取得します。

// Get the number of elements in the collection.
int count = collection->Count;
// Get the number of elements in the collection.
int count = collection.Count;
' Get the number of elements in the collection.
Dim count As Integer = collection.Count

適用対象