AjTalk.Language.ObjectOperators.NegateBoolean C# (CSharp) Method

NegateBoolean() public static method

public static NegateBoolean ( bool value ) : bool
value bool
return bool
        public static bool NegateBoolean(bool value)
        {
            return !value;
        }