IImmutableList<T>.SetItem(Int32, T) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用指定的項目取代清單中指定位置的項目。
public:
System::Collections::Immutable::IImmutableList<T> ^ SetItem(int index, T value);
public System.Collections.Immutable.IImmutableList<T> SetItem (int index, T value);
abstract member SetItem : int * 'T -> System.Collections.Immutable.IImmutableList<'T>
Public Function SetItem (index As Integer, value As T) As IImmutableList(Of T)
參數
- index
- Int32
清單中要取代之元素的位置。
- value
- T
用來取代舊項目的項目。
傳回
新的清單,其中包含新的項目 (即使指定位置的項目與新的項目相同,也是如此)。