ListBox.IntegerCollection.AddRange メソッド

定義

コレクションに整数のグループを追加します。

オーバーロード

AddRange(Int32[])

コレクションに整数の配列を追加します。

AddRange(ListBox+IntegerCollection)

既存の ListBox.IntegerCollection の内容を別のコレクションに追加します。

AddRange(Int32[])

コレクションに整数の配列を追加します。

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)

既存の 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 の内容が現在のコレクションに追加され、重複が結合されたコレクションから削除されます。

適用対象