RegexCollection.Insert 方法 (Int32, Regex)

将元素插入 RegexCollection 的指定索引处。

命名空间:  Microsoft.Office.Tools
程序集:  Microsoft.Office.Tools.Common(在 Microsoft.Office.Tools.Common.dll 中)

语法

声明
Sub Insert ( _
    index As Integer, _
    value As Regex _
)
void Insert(
    int index,
    Regex value
)

参数

  • index
    类型:System.Int32
    应插入 value 的位置的零始索引。

异常

异常 条件
ArgumentOutOfRangeException

index 小于零。

- 或 -

index 大于 Count

NotSupportedException

RegexCollection 是只读的。

- 或 -

RegexCollection 具有固定大小。

备注

如果 Count 已经等于容量,则通过自动再分配内部数组(在添加新元素之前)来使列表容量加倍。

如果 index 等于 Count,则将 value 添加到 RegexCollection 的结尾处。

.NET Framework 安全性

请参见

参考

RegexCollection 接口

Insert 重载

Microsoft.Office.Tools 命名空间