IImmutableList<T>.Replace(T, T, IEqualityComparer<T>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回新的清單,且其清單中第一個相符的項目已取代為指定的項目。
public:
System::Collections::Immutable::IImmutableList<T> ^ Replace(T oldValue, T newValue, System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer);
public System.Collections.Immutable.IImmutableList<T> Replace (T oldValue, T newValue, System.Collections.Generic.IEqualityComparer<T> equalityComparer);
public System.Collections.Immutable.IImmutableList<T> Replace (T oldValue, T newValue, System.Collections.Generic.IEqualityComparer<T>? equalityComparer);
abstract member Replace : 'T * 'T * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.IImmutableList<'T>
Public Function Replace (oldValue As T, newValue As T, equalityComparer As IEqualityComparer(Of T)) As IImmutableList(Of T)
參數
- oldValue
- T
要遭到取代的項目。
- newValue
- T
要取代 第一次出現的 oldValue
專案。
- equalityComparer
- IEqualityComparer<T>
要用來符合 oldValue
的相等比較子。
傳回
新的清單,其中包含 newValue
(即使 oldvalue
與 newValue
相同,也是如此)。
例外狀況
清單中沒有 oldValue
。