Пример #1
0
        public string ToMSILCode()
        {
            _compareWithTrueOperation.FirstValue  = GetValue();
            _compareWithTrueOperation.SecondValue = Constants.TRUE_VALUE;
            var code = _compareWithTrueOperation.ToMSILCode();

            _compareWithFalseOperation.FirstValue = Constants.FALSE_VALUE;
            code += _compareWithFalseOperation.ToMSILCode();
            return(code);
        }
 public string ToMSILCode()
 {
     _compareWithZeroOperation.FirstValue = Constants.FALSE_VALUE;
     return(_comparisonOperator.ToMSILCode() + _compareWithZeroOperation.ToMSILCode());
 }