Microsoft.JScript.Conditional.Evaluate C# (CSharp) Method

Evaluate() private method

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