ImmutableList<T>.SetItem(Int32, T) メソッド

定義

変更できないリスト内の指定された位置にある要素を指定した要素に置換します。

public:
 System::Collections::Immutable::ImmutableList<T> ^ SetItem(int index, T value);
public System.Collections.Immutable.ImmutableList<T> SetItem (int index, T value);
member this.SetItem : int * 'T -> System.Collections.Immutable.ImmutableList<'T>
Public Function SetItem (index As Integer, value As T) As ImmutableList(Of T)

パラメーター

index
Int32

リスト内の置換する要素の位置。

value
T

古い要素を置換する要素。

戻り値

要素が置換された新しいリスト (その位置にある古い要素と同じ場合でも置換されます)。

適用対象