PropertyDescriptorCollection.Count Proprietà

Definizione

Ottiene il numero di descrittori di proprietà 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 descrittori di proprietà nell'insieme.

Implementazioni

Esempio

Nell'esempio di codice seguente viene utilizzata la Count proprietà per stampare il numero di proprietà in button1. Richiede che button1 e textBox1 sia stata creata un'istanza in un modulo.

private:
   void GetCount()
   {
      // Creates a new collection and assign it the properties for button1.
      PropertyDescriptorCollection^ properties = TypeDescriptor::GetProperties( button1 );
      
      // Prints the number of properties on button1 in a textbox.
      textBox1->Text = properties->Count.ToString();
   }
private void GetCount() {
    // Creates a new collection and assign it the properties for button1.
    PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(button1);
 
    // Prints the number of properties on button1 in a textbox.
    textBox1.Text = properties.Count.ToString();
 }
Private Sub GetCount()
    ' Creates a new collection and assign it the properties for button1.
    Dim properties As PropertyDescriptorCollection = TypeDescriptor.GetProperties(button1)
       
    ' Prints the number of properties on button1 in a textbox.
    textBox1.Text = properties.Count.ToString()
End Sub

Commenti

È possibile utilizzare la Count proprietà per impostare i limiti di un ciclo che scorre una raccolta di oggetti. Poiché la raccolta è basata su zero, assicurarsi di usare Count - 1 come limite superiore del ciclo.

Si applica a

Vedi anche