ImmutableList.Replace<T>(IImmutableList<T>, T, T) メソッド

定義

リスト内で最初に一致する要素を、指定した要素に置換します。

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Immutable::IImmutableList<T> ^ Replace(System::Collections::Immutable::IImmutableList<T> ^ list, T oldValue, T newValue);
public static System.Collections.Immutable.IImmutableList<T> Replace<T> (this System.Collections.Immutable.IImmutableList<T> list, T oldValue, T newValue);
static member Replace : System.Collections.Immutable.IImmutableList<'T> * 'T * 'T -> System.Collections.Immutable.IImmutableList<'T>
<Extension()>
Public Function Replace(Of T) (list As IImmutableList(Of T), oldValue As T, newValue As T) As IImmutableList(Of T)

型パラメーター

T

リスト内の項目の型。

パラメーター

list
IImmutableList<T>

検索するリスト。

oldValue
T

置換する要素。

newValue
T

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

戻り値

新しいリスト (置き換えられる値がその位置の新しい値と同じ場合も)。

例外

oldValue はリストに存在しません。

適用対象