Imager.sPixel.operator C# (CSharp) Method

operator() public static method

Test for inequality of at least one color component.
public static operator ( ) : bool
return bool
        public static bool operator !=(sPixel pixel1, sPixel pixel2)
        {
            return (pixel1._rgbBytes != pixel2._rgbBytes);
        }

Same methods

sPixel::operator ( ) : sPixel