CommaDelimitedStringCollection.Insert(Int32, String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将一个字符串元素添加到集合中的指定索引位置。
public:
void Insert(int index, System::String ^ value);
public void Insert (int index, string value);
override this.Insert : int * string -> unit
Public Sub Insert (index As Integer, value As String)
参数
- index
- Int32
集合中将添加新元素的索引位置。
- value
- String
要添加到集合中的新元素的值。
示例
下面的代码示例演示如何使用 Insert 方法。 此代码示例是为类概述提供的更大示例的 CommaDelimitedStringCollection 一部分。
// Insert a new element in the collection.
myStrCollection.Insert(myStrCollection.Count, "userNameX");
' Insert a new element in the collection.
myStrCollection.Insert(myStrCollection.Count, "userNameX")
注解
此方法使 IsModified 属性设置为 true
。