DesignerCollection.Count Propiedad

Definición

Obtiene el número de diseñadores de la colección.

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

Valor de propiedad

Número de diseñadores de la colección.

Implementaciones

Ejemplos

En el ejemplo de código siguiente se obtiene el número de elementos de la colección.

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

Se aplica a