CodeCommentStatementCollection.Insert(Int32, CodeCommentStatement) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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"))