ABT.LogicalNot.LogicalNot C# (CSharp) Метод

LogicalNot() публичный Метод

public LogicalNot ( Expr expr ) : System
expr Expr
Результат System
        public LogicalNot(Expr expr)
            : base(expr) {
            if (!(expr.Type is LongType || expr.Type is ULongType
                  || expr.Type is FloatType || expr.Type is DoubleType)) {
                throw new InvalidOperationException("Invalid operand type.");
            }
        }