CodeCommentStatementCollection.Insert(Int32, CodeCommentStatement) Méthode

Définition

Insère un objet CodeCommentStatement dans la collection à l'index spécifié.

public:
 void Insert(int index, System::CodeDom::CodeCommentStatement ^ value);
public void Insert (int index, System.CodeDom.CodeCommentStatement value);
member this.Insert : int * System.CodeDom.CodeCommentStatement -> unit
Public Sub Insert (index As Integer, value As CodeCommentStatement)

Paramètres

index
Int32

Index de base zéro dans lequel l'élément doit être inséré.

value
CodeCommentStatement

Objet CodeCommentStatement à insérer.

Exemples

L’exemple suivant montre comment utiliser la Insert méthode pour ajouter un CodeCommentStatement objet au CodeCommentStatementCollection.

// Inserts a CodeCommentStatement at index 0 of the collection.
collection->Insert( 0, gcnew CodeCommentStatement( "Test comment" ) );
// Inserts a CodeCommentStatement at index 0 of the collection.
collection.Insert( 0, new CodeCommentStatement("Test comment") );
' Inserts a CodeCommentStatement at index 0 of the collection.
collection.Insert(0, New CodeCommentStatement("Test comment"))

S’applique à

Voir aussi