CodeNamespaceImportCollection.Count Proprietà

Definizione

Restituisce il numero degli spazi dei nomi contenuti nell'insieme.

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

Valore della proprietà

Numero di spazi dei nomi nell'insieme.

Implementazioni

Esempio

Il codice seguente ottiene il numero di elementi in un CodeNamespaceImportCollection oggetto.

// Retrieves the count of the items in the collection.
int collectionCount = collection->Count;
// Retrieves the count of the items in the collection.
int collectionCount = collection.Count;
' Retrieves the count of the items in the collection.
Dim collectionCount As Integer = collection.Count

Si applica a