ImmutableSortedSet<T>.IList<T>.Insert(Int32, T) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.