CaptureCollection.IList<Capture>.Insert(Int32, Capture) 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.
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
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.