Поделиться через


CodeAttributeArgumentCollection.Insert(Int32, CodeAttributeArgument) Метод

Определение

Вставляет указанный объект CodeAttributeArgument в коллекцию по указанному индексу.

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)

Параметры

index
Int32

Индекс, отсчитываемый от нуля, по которому следует вставить указанный объект.

value
CodeAttributeArgument

Вставляемый объект CodeAttributeArgument.

Примеры

В следующем примере показано, как использовать Insert метод для добавления CodeAttributeArgument объекта в 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)))

Применяется к