CodeTypeDeclarationCollection::Add Method (CodeTypeDeclaration^)

 

Adds the specified CodeTypeDeclaration object to the collection.

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

public:
int Add(
	CodeTypeDeclaration^ value
)

Parameters

value
Type: System.CodeDom::CodeTypeDeclaration^

The CodeTypeDeclaration object to add.

Return Value

Type: System::Int32

The index at which the new element was inserted.

The following example demonstrates how to use the Add method to add a CodeTypeDeclaration object to a CodeTypeDeclarationCollection.

// Adds a CodeTypeDeclaration to the collection.
collection->Add( gcnew CodeTypeDeclaration( "TestType" ) );

.NET Framework
Available since 1.1
Return to top
Show: