共用方式為


CodeAttributeArgumentCollection.Add(CodeAttributeArgument) 方法

定義

將指定的 CodeAttributeArgument 物件加入至集合。

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

參數

value
CodeAttributeArgument

要加入的 CodeAttributeArgument 物件。

傳回

要插入新項目的索引。

範例

下列範例示範如何將 物件新增 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)))

適用於

另請參閱