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
。