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

Применяется к