CodeTypeMemberCollection::Add Method (CodeTypeMember^)

 

Adds a CodeTypeMember with the specified value to the collection.

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

public:
int Add(
	CodeTypeMember^ value
)

Parameters

value
Type: System.CodeDom::CodeTypeMember^

The CodeTypeMember to add.

Return Value

Type: System::Int32

The index at which the new element was inserted.

The following code example demonstrates how to add a CodeTypeMember object to a CodeTypeMemberCollection instance.

// Adds a CodeTypeMember to the collection.
collection->Add( gcnew CodeMemberField( "System.String","TestStringField" ) );

.NET Framework
Available since 1.1
Return to top
Show: