CodeTypeDeclarationCollection.Add(CodeTypeDeclaration) Method

Definition

Adds the specified CodeTypeDeclaration object to the collection.

public:
 int Add(System::CodeDom::CodeTypeDeclaration ^ value);
public int Add (System.CodeDom.CodeTypeDeclaration value);
member this.Add : System.CodeDom.CodeTypeDeclaration -> int
Public Function Add (value As CodeTypeDeclaration) As Integer

Parameters

value
CodeTypeDeclaration

The CodeTypeDeclaration object to add.

Returns

The index at which the new element was inserted.

Examples

The following example demonstrates how to use the Add method to add a CodeTypeDeclaration object to a CodeTypeDeclarationCollection.

// Adds a CodeTypeDeclaration to the collection.
collection->Add( gcnew CodeTypeDeclaration( "TestType" ) );
// Adds a CodeTypeDeclaration to the collection.
collection.Add( new CodeTypeDeclaration("TestType") );
' Adds a CodeTypeDeclaration to the collection.
collection.Add(New CodeTypeDeclaration("TestType"))

Applies to

See also