C# 클래스 ComponentFactory.Quicksilver.Binding.EvalNodeUnaryOp

EvalNode that represents a unary operation.
상속: EvalNode
파일 보기 프로젝트 열기: ComponentFactory/Quicksilver

Private Properties

프로퍼티 타입 설명
EvaluateComplement EvalResult
EvaluateMinus EvalResult
EvaluateNot EvalResult
EvaluatePlus EvalResult

공개 메소드들

메소드 설명
EvalNodeUnaryOp ( UnaryOp operation, EvalNode child, System.Language language ) : System

Instantiate a new instance of the EvalNodeUnaryOp node.

Evaluate ( object thisObject ) : EvalResult

Evalaute this node and return result.

ToString ( ) : string

Human readable version of the algebraic expression.

비공개 메소드들

메소드 설명
EvaluateComplement ( EvalResult ret ) : EvalResult
EvaluateMinus ( EvalResult ret ) : EvalResult
EvaluateNot ( EvalResult ret ) : EvalResult
EvaluatePlus ( EvalResult ret ) : EvalResult

메소드 상세

EvalNodeUnaryOp() 공개 메소드

Instantiate a new instance of the EvalNodeUnaryOp node.
public EvalNodeUnaryOp ( UnaryOp operation, EvalNode child, System.Language language ) : System
operation UnaryOp Specifies the unary operation to represent.
child EvalNode Specifies the child node.
language System.Language Language used for evaluation.
리턴 System

Evaluate() 공개 메소드

Evalaute this node and return result.
public Evaluate ( object thisObject ) : EvalResult
thisObject object Reference to object that is exposed as 'this'.
리턴 EvalResult

ToString() 공개 메소드

Human readable version of the algebraic expression.
public ToString ( ) : string
리턴 string