Share via


CommaDelimitedStringCollection.Insert(Int32, String) 方法

定義

將字串項目加入至集合中的指定索引處。

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

適用於