CodeExpressionCollection.Remove(CodeExpression) 方法

定义

从集合中移除指定的 CodeExpression 对象。

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

参数

value
CodeExpression

要从集合中移除的 CodeExpression 对象。

例外

未在集合中找到指定的对象。

示例

下面的示例演示如何使用 Remove 方法从 CodeExpressionCollection中删除 CodeExpression 对象。

// Removes the specified CodeExpression from the collection.
CodeExpression^ expression = gcnew CodePrimitiveExpression( true );
collection->Remove( expression );
// Removes the specified CodeExpression from the collection.
CodeExpression expression = new CodePrimitiveExpression(true);
collection.Remove( expression );
' Removes the specified CodeExpression from the collection.
Dim expression = New CodePrimitiveExpression(True)
collection.Remove(expression)

适用于