MatchCollection.IList<Match>.Insert(Int32, Match) 方法  
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
调用此方法始终引发 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
	参数
- index
 - Int32
 
应插入 item 的从零开始的索引。
- item
 - Match
 
要插入到集合中的对象。
实现
例外
该集合是只读的。