CoyoteMoves.Models.SeatingData.CoordinatePoint.IsEqualTo C# (CSharp) Méthode

IsEqualTo() public méthode

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