AjTalk.Language.ObjectOperators.NegateBoolean C# (CSharp) 메소드

NegateBoolean() 공개 정적인 메소드

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