다음을 통해 공유


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

0부터 시작하는 인덱스이며 지정된 개체를 삽입해야 합니다.

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

적용 대상