LitDev.LDLogic.Not C# (CSharp) Method

Not() public static method

The Not operator. Not("True") = "False" Not("False") = "True"
public static Not ( Primitive value ) : Primitive
value Primitive The value to operate on ("True" or "False").
return Primitive
        public static Primitive Not(Primitive value)
        {
            return !value;
        }