Microsoft.JScript.Conditional.Evaluate C# (CSharp) 메소드

Evaluate() 개인적인 메소드

private Evaluate ( ) : Object
리턴 Object
      internal override Object Evaluate(){
        if (Convert.ToBoolean(this.condition.Evaluate()))
          return this.operand1.Evaluate();
        else
          return this.operand2.Evaluate();
      }