CodeAttributeDeclarationCollection::Add Method (CodeAttributeDeclaration^)

 

Adds a CodeAttributeDeclaration object with the specified value to the collection.

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

public:
int Add(
	CodeAttributeDeclaration^ value
)

Parameters

value
Type: System.CodeDom::CodeAttributeDeclaration^

The CodeAttributeDeclaration 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 CodeAttributeDeclaration object to a CodeAttributeDeclarationCollection instance.

// Adds a CodeAttributeDeclaration to the collection.
array<CodeAttributeArgument^>^temp = {gcnew CodeAttributeArgument( gcnew CodePrimitiveExpression( "Test Description" ) )};
collection->Add( gcnew CodeAttributeDeclaration( "DescriptionAttribute",temp ) );

.NET Framework
Available since 1.1
Return to top
Show: