list クラス : AddRange(class) メソッド

説明

リストの最後に指定されたリストを追加します。

構文

listInstance.AddRange(someListClass items)

引数

クラス名前説明
someListClassitems追加されるリスト。

返り値

無し

サンプルコード

//anyListはlist型のインスタンス.

//otherListはlist型のインスタンス.

anyList.AddRange(otherList);

注意

System.Collections.Generic.List<t>.AddRange(IEnumerable<t>)のラッパーです。

参照リンク

Copyright © Rice All rights reserved.