Imager.sPixel.Equals C# (CSharp) Method

Equals() public method

Determines whether the specified System.Object is equal to this instance.
public Equals ( object o ) : bool
o object The to compare with this instance.
return bool
        public override bool Equals(object o)
        {
            return ((o is sPixel) && (((sPixel)o)._rgbBytes == this._rgbBytes));
        }

Same methods

sPixel::Equals ( sPixel pixel ) : bool