CodeAttributeArgumentCollection.Insert(Int32, CodeAttributeArgument) Method

Definition

Inserts the specified CodeAttributeArgument object into the collection at the specified index.

public:
 void Insert(int index, System::CodeDom::CodeAttributeArgument ^ value);
public void Insert (int index, System.CodeDom.CodeAttributeArgument value);
member this.Insert : int * System.CodeDom.CodeAttributeArgument -> unit
Public Sub Insert (index As Integer, value As CodeAttributeArgument)

Parameters

index
Int32

The zero-based index where the specified object should be inserted.

value
CodeAttributeArgument

The CodeAttributeArgument object to insert.

Examples

The following example demonstrates how to use the Insert method to add a CodeAttributeArgument object to a CodeAttributeArgumentCollection.

// Inserts a CodeAttributeArgument at index 0 of the collection.
collection->Insert( 0, gcnew CodeAttributeArgument( "Test Boolean Argument",gcnew CodePrimitiveExpression( true ) ) );
// Inserts a CodeAttributeArgument at index 0 of the collection.
collection.Insert( 0, new CodeAttributeArgument("Test Boolean Argument", new CodePrimitiveExpression(true)) );
' Inserts a CodeAttributeArgument at index 0 of the collection.
collection.Insert(0, New CodeAttributeArgument("Test Boolean Argument", New CodePrimitiveExpression(True)))

Applies to