CodeAttributeArgumentCollection.Add(CodeAttributeArgument) Metodo

Definizione

Aggiunge l'oggetto CodeAttributeArgument specificato alla raccolta.

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

Parametri

value
CodeAttributeArgument

L'oggetto CodeAttributeArgument da aggiungere.

Restituisce

L'indice in corrispondenza del quale è stato inserito il nuovo elemento.

Esempio

Nell'esempio seguente viene illustrato come aggiungere un oggetto a un'istanza CodeAttributeArgumentCodeAttributeArgumentCollection .

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

Si applica a

Vedi anche