AjTalk.Language.ObjectOperators.NegateBoolean C# (CSharp) Méthode

NegateBoolean() public static méthode

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