CodeAttributeArgumentCollection.Insert(Int32, CodeAttributeArgument) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Dolgozzon együtt velünk a GitHubon
A tartalom forrása a GitHubon található, ahol létrehozhat és áttekinthet problémákat és lekéréses kérelmeket is. További információért tekintse meg a közreműködői útmutatónkat.