DesignerCollection.Count Özellik

Tanım

Koleksiyondaki tasarımcı sayısını alır.

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

Özellik Değeri

Koleksiyondaki tasarımcıların sayısı.

Uygulamalar

Örnekler

Aşağıdaki kod örneği koleksiyondaki öğelerin sayısını alır.

// 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

Şunlara uygulanır