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 して からオブジェクトを削除する CodeAttributeArgument 方法を CodeAttributeArgumentCollection示します。

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

適用対象