Imager.sPixel.IsNotLike C# (CSharp) Method

IsNotLike() public method

Determines whether this instance is not like the specified sPixel instance.
public IsNotLike ( sPixel pixel ) : bool
pixel sPixel The instance to compare to.
return bool
        public bool IsNotLike(sPixel pixel)
        {
            return (!this.IsLike(pixel));
        }