コード例 #1
0
ファイル: Round.cs プロジェクト: FreezeEngine/TimerModel
        public bool Equals(Round other)
        {
            if (other == null)
            {
                return(false);
            }

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