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

xnor() 공개 정적인 메소드

public static xnor ( bool self, bool b ) : bool
self bool
b bool
리턴 bool
        public static bool xnor(bool self, bool b)
        {
            return self == b;
        }