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
。