Bagikan melalui


CodeAttributeArgumentCollection.Add(CodeAttributeArgument) Metode

Definisi

Menambahkan objek yang ditentukan CodeAttributeArgument ke koleksi.

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

Parameter

value
CodeAttributeArgument

Objek CodeAttributeArgument yang akan ditambahkan.

Mengembalikan

Indeks tempat elemen baru disisipkan.

Contoh

Contoh berikut menunjukkan cara menambahkan CodeAttributeArgument objek ke CodeAttributeArgumentCollection instans.

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

Berlaku untuk

Lihat juga