CodeStatementCollection.Add Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Dodaje określony CodeStatement element do kolekcji.
Przeciążenia
Add(CodeExpression) |
Dodaje określony CodeExpression obiekt do kolekcji. |
Add(CodeStatement) |
Dodaje określony CodeStatement obiekt do kolekcji. |
Add(CodeExpression)
- Źródło:
- CodeStatementCollection.cs
- Źródło:
- CodeStatementCollection.cs
- Źródło:
- CodeStatementCollection.cs
Dodaje określony CodeExpression obiekt do kolekcji.
public:
int Add(System::CodeDom::CodeExpression ^ value);
public int Add (System.CodeDom.CodeExpression value);
member this.Add : System.CodeDom.CodeExpression -> int
Public Function Add (value As CodeExpression) As Integer
Parametry
- value
- CodeExpression
Obiekt do dodania CodeExpression .
Zwraca
Indeks, w którym został wstawiony nowy element.
Zobacz też
Dotyczy
Add(CodeStatement)
- Źródło:
- CodeStatementCollection.cs
- Źródło:
- CodeStatementCollection.cs
- Źródło:
- CodeStatementCollection.cs
Dodaje określony CodeStatement obiekt do kolekcji.
public:
int Add(System::CodeDom::CodeStatement ^ value);
public int Add (System.CodeDom.CodeStatement value);
member this.Add : System.CodeDom.CodeStatement -> int
Public Function Add (value As CodeStatement) As Integer
Parametry
- value
- CodeStatement
Obiekt do dodania CodeStatement .
Zwraca
Indeks, w którym został wstawiony nowy element.
Przykłady
W poniższym przykładzie pokazano, jak dodać CodeStatement obiekt do CodeStatementCollection wystąpienia.
// Adds a CodeStatement to the collection.
collection->Add( gcnew CodeCommentStatement( "Test comment statement" ) );
// Adds a CodeStatement to the collection.
collection.Add( new CodeCommentStatement("Test comment statement") );
' Adds a CodeStatement to the collection.
collection.Add(New CodeCommentStatement("Test comment statement"))