Nohal.RleEditor.RleParser.Utils.HSB.operator C# (CSharp) 메소드

operator() 공개 정적인 메소드

public static operator ( ) : bool
리턴 bool
        public static bool operator !=(HSB item1, HSB item2)
        {
            return (
                       item1.Hue != item2.Hue
                       || item1.Saturation != item2.Saturation
                       || item1.Brightness != item2.Brightness
                   );
        }