ArraySegment<T>.IList<T>.Insert(Int32, T) Method

Definition

Throws a NotSupportedException exception in all cases.

 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 array segment.

Implements

Exceptions

In all cases.

Remarks

This method always throws a NotSupportedException because an array segment cannot be expanded.

Applies to