CodeTypeReferenceCollection::Add Method (CodeTypeReference^)

 

Adds the specified CodeTypeReference to the collection.

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

public:
int Add(
	CodeTypeReference^ value
)

Parameters

value
Type: System.CodeDom::CodeTypeReference^

The CodeTypeReference to add.

Return Value

Type: System::Int32

The index at which the new element was inserted.

// Adds a CodeTypeReference to the collection.
collection->Add( gcnew CodeTypeReference( bool::typeid ) );

.NET Framework
Available since 1.1
Return to top
Show: