Treefrog.Framework.Imaging.Point.Equals C# (CSharp) Method

Equals() public method

public Equals ( Point other ) : bool
other Point
return bool
        public bool Equals(Point other)
        {
            return this.X == other.X && this.Y == other.Y;
        }

Same methods

Point::Equals ( object obj ) : bool