共用方式為


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 方法將 物件加入 CodeAttributeArgumentCodeAttributeArgumentCollection

// 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)))

適用於