Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

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:
© 2017 Microsoft