共用方式為


CodeAttributeArgumentCollection.Remove(CodeAttributeArgument) 方法

定義

從集合中移除指定的 CodeAttributeArgument 物件。

public:
 void Remove(System::CodeDom::CodeAttributeArgument ^ value);
public void Remove (System.CodeDom.CodeAttributeArgument value);
member this.Remove : System.CodeDom.CodeAttributeArgument -> unit
Public Sub Remove (value As CodeAttributeArgument)

參數

value
CodeAttributeArgument

要從集合移除的 CodeAttributeArgument 物件。

例外狀況

在集合中找不到指定的物件。

範例

下列範例示範如何使用 Remove 方法從 CodeAttributeArgumentCollection中刪除 CodeAttributeArgument 物件。

// Removes the specified CodeAttributeArgument from the collection.
CodeAttributeArgument^ argument = gcnew CodeAttributeArgument( "Test Boolean Argument",gcnew CodePrimitiveExpression( true ) );
collection->Remove( argument );
// Removes the specified CodeAttributeArgument from the collection.
CodeAttributeArgument argument = new CodeAttributeArgument("Test Boolean Argument", new CodePrimitiveExpression(true));
collection.Remove( argument );
' Removes the specified CodeAttributeArgument from the collection.
Dim argument As New CodeAttributeArgument("Test Boolean Argument", New CodePrimitiveExpression(True))
collection.Remove(argument)

適用於