PropertyDescriptorCollection.Count Propiedad

Definición

Obtiene el número de descriptores de propiedades 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 descriptores de propiedades de la colección.

Implementaciones

Ejemplos

En el ejemplo de código siguiente se usa la Count propiedad para imprimir el número de propiedades en button1. Requiere que button1 y textBox1 se hayan creado instancias en un formulario.

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

Comentarios

Puede usar la Count propiedad para establecer los límites de un bucle que recorre en iteración una colección de objetos. Dado que la colección está basada en cero, asegúrese de usar Count - 1 como límite superior del bucle.

Se aplica a

Consulte también