RegexCollection.Insert(Int32, Regex) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将元素插入 RegexCollection 的指定索引处。
public:
void Insert(int index, System::Text::RegularExpressions::Regex ^ value);
public void Insert (int index, System.Text.RegularExpressions.Regex value);
abstract member Insert : int * System.Text.RegularExpressions.Regex -> unit
Public Sub Insert (index As Integer, value As Regex)
参数
- index
- Int32
应插入 value
的从零开始的索引。
- value
- Regex
要插入的正则表达式。
例外
index
小于零。- 或 - index
大于 Count。
RegexCollection是只读的。-或 -具有RegexCollection固定大小。
注解
如果 Count 已等于容量,则通过在插入新元素之前自动重新分配内部数组,使列表的容量增加一倍。
如果 index
等于 Count, value
则添加到 的 RegexCollection末尾。