Nohal.RleEditor.RleParser.Utils.HSB.operator C# (CSharp) Method

operator() public static method

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