ListBox.IntegerCollection.AddRange Метод
Определение
Добавляет группу целых чисел в коллекцию.Adds a group of integers to the collection.
Перегрузки
AddRange(Int32[]) |
Добавляет в коллекцию массив целых чисел.Adds an array of integers to the collection. |
AddRange(ListBox+IntegerCollection) |
Добавляет содержимое существующей коллекции ListBox.IntegerCollection в другую коллекцию.Adds the contents of an existing ListBox.IntegerCollection to another collection. |
AddRange(Int32[])
Добавляет в коллекцию массив целых чисел.Adds an array of integers to the collection.
public:
void AddRange(cli::array <int> ^ items);
public void AddRange (int[] items);
member this.AddRange : int[] -> unit
Public Sub AddRange (items As Integer())
Параметры
- items
- Int32[]
Массив целых чисел, добавляемый в коллекцию.The array of integers to add to the collection.
Комментарии
Массив целых чисел добавляется в коллекцию, а дубликаты удаляются из коллекции.The array of integers is appended to the collection, and duplicates are removed from the collection.
Применяется к
AddRange(ListBox+IntegerCollection)
Добавляет содержимое существующей коллекции ListBox.IntegerCollection в другую коллекцию.Adds the contents of an existing ListBox.IntegerCollection to another collection.
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)
Параметры
Коллекция ListBox.IntegerCollection, добавляемая в другую коллекцию.The ListBox.IntegerCollection to add to another collection.
Комментарии
Содержимое существующих элементов ListBox.IntegerCollection добавляется к текущей коллекции, а дубликаты удаляются из объединенной коллекции.The contents of the existing ListBox.IntegerCollection are appended to the current collection, and duplicates are removed from the combined collection.