ListBox.IntegerCollection.AddRange 메서드

정의

컬렉션에 정수 그룹을 추가합니다.

오버로드

Name Description
AddRange(Int32[])

컬렉션에 정수 배열을 추가합니다.

AddRange(ListBox+IntegerCollection)

기존 ListBox.IntegerCollection 컬렉션의 내용을 다른 컬렉션에 추가합니다.

AddRange(Int32[])

Source:
ListBox.IntegerCollection.cs
Source:
ListBox.IntegerCollection.cs
Source:
ListBox.IntegerCollection.cs
Source:
ListBox.IntegerCollection.cs
Source:
ListBox.IntegerCollection.cs

컬렉션에 정수 배열을 추가합니다.

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())

매개 변수

items
Int32[]

컬렉션에 추가할 정수의 배열입니다.

설명

정수 배열이 컬렉션에 추가되고 컬렉션에서 중복 항목이 제거됩니다.

적용 대상

AddRange(ListBox+IntegerCollection)

Source:
ListBox.IntegerCollection.cs
Source:
ListBox.IntegerCollection.cs
Source:
ListBox.IntegerCollection.cs
Source:
ListBox.IntegerCollection.cs
Source:
ListBox.IntegerCollection.cs

기존 ListBox.IntegerCollection 컬렉션의 내용을 다른 컬렉션에 추가합니다.

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)

매개 변수

value
ListBox.IntegerCollection

ListBox.IntegerCollection 다른 컬렉션에 추가할 값입니다.

설명

기존 ListBox.IntegerCollection 내용이 현재 컬렉션에 추가되고 중복 항목이 결합된 컬렉션에서 제거됩니다.

적용 대상