IImmutableList<T>.Insert(Int32, T) メソッド

定義

指定した要素を、変更できないリストの指定したインデックス位置に挿入します。

public:
 System::Collections::Immutable::IImmutableList<T> ^ Insert(int index, T element);
public System.Collections.Immutable.IImmutableList<T> Insert (int index, T element);
abstract member Insert : int * 'T -> System.Collections.Immutable.IImmutableList<'T>
Public Function Insert (index As Integer, element As T) As IImmutableList(Of T)

パラメーター

index
Int32

値を挿入する位置を示す、0 から始まるインデックス。

element
T

挿入するオブジェクト。

戻り値

指定した要素が含まれている新しい変更できないリスト。

適用対象