다음을 통해 공유


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)

적용 대상