ImmutableSortedSet<T>.IList<T>.Insert(Int32, T) Method
Definition
Inserts an item in the set at the specified index.
virtual void System.Collections.Generic.IList<T>.Insert(int index, T item) = System::Collections::Generic::IList<T>::Insert;
void IList<T>.Insert (int index, T item);
abstract member System.Collections.Generic.IList<T>.Insert : int * 'T -> unit
override this.System.Collections.Generic.IList<T>.Insert : int * 'T -> unit
Sub Insert (index As Integer, item As T) Implements IList(Of T).Insert
Parameters
- index
- Int32
The zero-based index at which item
should be inserted.
- item
- T
The object to insert into the set.
Implements
Remarks
This member is an explicit interface member implementation. It can be used only when the ImmutableSortedSet<T> instance is cast to an IList<T> interface.
System.Collections.Immutable NuGet package
About immutable collections and how to install