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

IsEqualTo() public méthode

public IsEqualTo ( Location other ) : bool
other Location
Résultat bool
        public bool IsEqualTo(Location other)
        {
            return (this.Floor == other.Floor) && this.TopLeft.IsEqualTo(other.TopLeft);
        }