CaptureCollection.IList<Capture>.Insert(Int32, Capture) Method

Definition

Calling this method always throws NotSupportedException.

 virtual void System.Collections.Generic.IList<System.Text.RegularExpressions.Capture>.Insert(int index, System::Text::RegularExpressions::Capture ^ item) = System::Collections::Generic::IList<System::Text::RegularExpressions::Capture ^>::Insert;
void IList<Capture>.Insert (int index, System.Text.RegularExpressions.Capture item);
abstract member System.Collections.Generic.IList<System.Text.RegularExpressions.Capture>.Insert : int * System.Text.RegularExpressions.Capture -> unit
override this.System.Collections.Generic.IList<System.Text.RegularExpressions.Capture>.Insert : int * System.Text.RegularExpressions.Capture -> unit
Sub Insert (index As Integer, item As Capture) Implements IList(Of Capture).Insert

Parameters

index
Int32

The zero-based index at which item should be inserted.

item
Capture

The object to insert into the collection.

Implements

Exceptions

The collection is read-only.

Applies to