ArraySegment<T>.IList<T>.RemoveAt(Int32) Method

Definition

Throws a NotSupportedException exception in all cases.

 virtual void System.Collections.Generic.IList<T>.RemoveAt(int index) = System::Collections::Generic::IList<T>::RemoveAt;
void IList<T>.RemoveAt (int index);
abstract member System.Collections.Generic.IList<T>.RemoveAt : int -> unit
override this.System.Collections.Generic.IList<T>.RemoveAt : int -> unit
Sub RemoveAt (index As Integer) Implements IList(Of T).RemoveAt

Parameters

index
Int32

The zero-based index of the item to remove.

Implements

Exceptions

In all cases.

Remarks

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

Applies to