Sdílet prostřednictvím


CodeAttributeArgumentCollection.Add(CodeAttributeArgument) Metoda

Definice

Přidá zadaný CodeAttributeArgument objekt do kolekce.

public:
 int Add(System::CodeDom::CodeAttributeArgument ^ value);
public int Add (System.CodeDom.CodeAttributeArgument value);
member this.Add : System.CodeDom.CodeAttributeArgument -> int
Public Function Add (value As CodeAttributeArgument) As Integer

Parametry

value
CodeAttributeArgument

Objekt CodeAttributeArgument , který chcete přidat.

Návraty

Index, do kterého byl vložen nový prvek.

Příklady

Následující příklad ukazuje, jak přidat CodeAttributeArgument objekt do CodeAttributeArgumentCollection instance.

// Adds a CodeAttributeArgument to the collection.
collection->Add( gcnew CodeAttributeArgument( "Test Boolean Argument",gcnew CodePrimitiveExpression( true ) ) );
// Adds a CodeAttributeArgument to the collection.
collection.Add( new CodeAttributeArgument("Test Boolean Argument", new CodePrimitiveExpression(true)) );
' Adds a CodeAttributeArgument to the collection.
collection.Add(New CodeAttributeArgument("Test Boolean Argument", New CodePrimitiveExpression(True)))

Platí pro

Viz také