CodeStatementCollection::Add Method (CodeStatement^)

 

Adds the specified CodeStatement object to the collection.

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

public:
int Add(
	CodeStatement^ value
)

Parameters

value
Type: System.CodeDom::CodeStatement^

The CodeStatement 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 CodeStatement object to a CodeStatementCollection instance.

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

.NET Framework
Available since 1.1
Return to top
Show: