CodeNamespaceCollection::Add Method (CodeNamespace^)

 

Adds the specified CodeNamespace object to the collection.

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

public:
int Add(
	CodeNamespace^ value
)

Parameters

value
Type: System.CodeDom::CodeNamespace^

The CodeNamespace 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 CodeNamespace object to a CodeNamespaceCollection instance.

// Adds a CodeNamespace to the collection.
collection->Add( gcnew CodeNamespace( "TestNamespace" ) );

.NET Framework
Available since 1.1
Return to top
Show: