CodeCatchClauseCollection::Add Method (CodeCatchClause^)

 

Adds the specified CodeCatchClause object to the collection.

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

public:
int Add(
	CodeCatchClause^ value
)

Parameters

value
Type: System.CodeDom::CodeCatchClause^

The CodeCatchClause 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 CodeCatchClause object to the CodeCatchClauseCollection instance.

// Adds a CodeCatchClause to the collection.
collection->Add( gcnew CodeCatchClause( "e" ) );

.NET Framework
Available since 1.1
Return to top
Show: