ExpressionParser.BoolOperand.ExtractAndSetValue C# (CSharp) Method

ExtractAndSetValue() public method

public ExtractAndSetValue ( string szValue, bool bFormula ) : void
szValue string
bFormula bool
return void
        public override void ExtractAndSetValue(string szValue, bool bFormula)
        {
            m_VarValue = !bFormula ? Convert.ToBoolean(szValue) : false;
        }
        public IOperand AND(IOperand rhs)