CodeCommentStatementCollection.Add(CodeCommentStatement) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Aggiunge l'oggetto CodeCommentStatement specificato alla raccolta.
public:
int Add(System::CodeDom::CodeCommentStatement ^ value);
public int Add (System.CodeDom.CodeCommentStatement value);
member this.Add : System.CodeDom.CodeCommentStatement -> int
Public Function Add (value As CodeCommentStatement) As Integer
Parametri
- value
- CodeCommentStatement
L'oggetto CodeCommentStatement da aggiungere.
Restituisce
L'indice in corrispondenza del quale è stato inserito il nuovo elemento.
Esempio
Nell'esempio seguente viene illustrato come aggiungere un oggetto a un'istanza CodeCommentStatementCodeCommentStatementCollection .
// Adds a CodeCommentStatement to the collection.
collection->Add( gcnew CodeCommentStatement( "Test comment" ) );
// Adds a CodeCommentStatement to the collection.
collection.Add( new CodeCommentStatement("Test comment") );
' Adds a CodeCommentStatement to the collection.
collection.Add(New CodeCommentStatement("Test comment"))