CaptureCollection.IList<Capture>.Insert(Int32, Capture) 方法

定义

调用此方法始终引发 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

参数

index
Int32

应插入 item 的从零开始的索引。

item
Capture

要插入到集合中的对象。

实现

例外

该集合是只读的。

适用于