ImmutableList.Replace<T>(IImmutableList<T>, T, T) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用指定的項目,來取代清單中第一個相等的項目。
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
。