ListBox.IntegerCollection.AddRange Método

Definición

Agrega un grupo de enteros a la colección.

Sobrecargas

AddRange(Int32[])

Agrega una matriz de enteros a la colección.

AddRange(ListBox+IntegerCollection)

Agrega el contenido de una colección ListBox.IntegerCollection existente a otra colección.

AddRange(Int32[])

Agrega una matriz de enteros a la colección.

public:
 void AddRange(cli::array <int> ^ items);
public:
 void AddRange(... cli::array <int> ^ items);
public void AddRange (int[] items);
public void AddRange (params int[] items);
member this.AddRange : int[] -> unit
Public Sub AddRange (items As Integer())
Public Sub AddRange (ParamArray items As Integer())

Parámetros

items
Int32[]

Matriz de enteros que se va a agregar a la colección.

Comentarios

La matriz de enteros se anexa a la colección y los duplicados se quitan de la colección.

Se aplica a

AddRange(ListBox+IntegerCollection)

Agrega el contenido de una colección ListBox.IntegerCollection existente a otra colección.

public:
 void AddRange(System::Windows::Forms::ListBox::IntegerCollection ^ value);
public void AddRange (System.Windows.Forms.ListBox.IntegerCollection value);
member this.AddRange : System.Windows.Forms.ListBox.IntegerCollection -> unit
Public Sub AddRange (value As ListBox.IntegerCollection)

Parámetros

value
ListBox.IntegerCollection

ListBox.IntegerCollection que se agrega a otra colección.

Comentarios

El contenido del existente ListBox.IntegerCollection se anexa a la colección actual y los duplicados se quitan de la colección combinada.

Se aplica a