CoyoteMoves.Models.SeatingData.CoordinatePoint.IsEqualTo C# (CSharp) Method

IsEqualTo() public method

public IsEqualTo ( CoordinatePoint other ) : bool
other CoordinatePoint
return bool
        public bool IsEqualTo(CoordinatePoint other)
        {
            return (this.XCoordinate == other.XCoordinate) && (this.YCoordinate == other.YCoordinate);
        }