Поделиться через


CodeCommentStatementCollection.Add(CodeCommentStatement) Метод

Определение

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

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

Параметры

value
CodeCommentStatement

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

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

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

Примеры

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

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

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

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