ImmutableList<T>.IImmutableList<T>.SetItem(Int32, T) 方法

定义

将列表中位于给定位置的元素替换为指定的元素。

 virtual System::Collections::Immutable::IImmutableList<T> ^ System.Collections.Immutable.IImmutableList<T>.SetItem(int index, T value) = System::Collections::Immutable::IImmutableList<T>::SetItem;
System.Collections.Immutable.IImmutableList<T> IImmutableList<T>.SetItem (int index, T value);
abstract member System.Collections.Immutable.IImmutableList<T>.SetItem : int * 'T -> System.Collections.Immutable.IImmutableList<'T>
override this.System.Collections.Immutable.IImmutableList<T>.SetItem : int * 'T -> System.Collections.Immutable.IImmutableList<'T>
Function SetItem (index As Integer, value As T) As IImmutableList(Of T) Implements IImmutableList(Of T).SetItem

参数

index
Int32

要替换的元素在列表中的位置。

value
T

用于替换旧元素的元素。

返回

新列表。

实现

注解

此成员是显式接口成员的实现。 它只能在 ImmutableList<T> 实例被强制转换为 IImmutableList<T> 接口时使用。

适用于