CodeParameterDeclarationExpressionCollection::Add Method (CodeParameterDeclarationExpression^)

 

Adds the specified CodeParameterDeclarationExpression to the collection.

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

public:
int Add(
	CodeParameterDeclarationExpression^ value
)

Return Value

Type: System::Int32

The index at which the new element was inserted.

The following example demonstrates how to add a CodeParameterDeclarationExpression object to a CodeParameterDeclarationExpressionCollection instance.

// Adds a CodeParameterDeclarationExpression to the collection.
collection->Add( gcnew CodeParameterDeclarationExpression( int::typeid,"testIntArgument" ) );

.NET Framework
Available since 1.1
Return to top
Show: