CodeStatementCollection.Add Метод

Определение

Добавляет указанный параметр CodeStatement в коллекцию.

Перегрузки

Add(CodeExpression)

Добавляет указанный объект CodeExpression в коллекцию.

Add(CodeStatement)

Добавляет указанный объект CodeStatement в коллекцию.

Add(CodeExpression)

Исходный код:
CodeStatementCollection.cs
Исходный код:
CodeStatementCollection.cs
Исходный код:
CodeStatementCollection.cs

Добавляет указанный объект CodeExpression в коллекцию.

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

Параметры

value
CodeExpression

Добавляемый объект CodeExpression.

Возвращаемое значение

Индекс, указывающий, куда был вставлен новый элемент.

См. также раздел

Применяется к

Add(CodeStatement)

Исходный код:
CodeStatementCollection.cs
Исходный код:
CodeStatementCollection.cs
Исходный код:
CodeStatementCollection.cs

Добавляет указанный объект CodeStatement в коллекцию.

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

Параметры

value
CodeStatement

Добавляемый объект CodeStatement.

Возвращаемое значение

Индекс, указывающий, куда был вставлен новый элемент.

Примеры

В следующем примере показано, как добавить CodeStatement объект в CodeStatementCollection экземпляр .

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

См. также раздел

Применяется к