list クラス : Insert(int,class) メソッド

説明

指定したインデックスに要素を挿入します。

構文

listInstance.Insert(int index, someClass element)

引数

クラス名前説明
intindex挿入するインデックス。
someClasselement挿入される要素。

返り値

無し

サンプルコード

//anyListはlist{string}型のインスタンス.

anyList.Insert(0,"ww");

注意

System.Collections.Generic.List<t>.Insert(Int32,T)のラッパーです。

インデックスは0ベースです。

参照リンク

Copyright © Rice All rights reserved.