CodeCommentStatementCollection::Add Method (CodeCommentStatement^)

 

Adds the specified CodeCommentStatement object to the collection.

Namespace:   System.CodeDom
Assembly:  System (in System.dll)

public:
int Add(
	CodeCommentStatement^ value
)

Parameters

value
Type: System.CodeDom::CodeCommentStatement^

The CodeCommentStatement object to add.

Return Value

Type: System::Int32

The index at which the new element was inserted.

The following example demonstrates how to add a CodeCommentStatement object to a CodeCommentStatementCollection instance.

// Adds a CodeCommentStatement to the collection.
collection->Add( gcnew CodeCommentStatement( "Test comment" ) );

.NET Framework
Available since 1.1
Return to top
Show: