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")

注釈

このメソッドにより、 プロパティが IsModifiedtrue設定されます。

適用対象