MatchCollection.IList<Match>.Insert(Int32, Match) Method

Definition

Calling this method always throws NotSupportedException.

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

Parameters

index
Int32

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

item
Match

The object to insert into the collection.

Implements

Exceptions

The collection is read-only.

Applies to