Exemplo n.º 1
0
        public bool Equals(Round other)
        {
            if (other == null)
            {
                return(false);
            }

            return(Laps.Equals(other.Laps) && RoundTime().Equals(other.RoundTime()));
        }