list クラス : AddRange(class) メソッド
説明
リストの最後に指定されたリストを追加します。
構文
listInstance.AddRange(someListClass items)
引数
クラス | 名前 | 説明 |
someListClass | items | 追加されるリスト。 |
返り値
無し
サンプルコード
//anyListはlist型のインスタンス.
//otherListはlist型のインスタンス.
anyList.AddRange(otherList);
注意
System.Collections.Generic.List<t>.AddRange(IEnumerable<t>)のラッパーです。