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

适用于

另请参阅