Babel.Core.BOOL.not C# (CSharp) 메소드

not() 공개 정적인 메소드

public static not ( bool self ) : bool
self bool
리턴 bool
        public static bool not(bool self)
        {
            return !self;
        }