Beispiel #1
0
        protected bool Equals(RangeTest other)
        {
            var datesCloseEnough = Math.Abs(CreatedDate.Subtract(other.CreatedDate).TotalSeconds) < 1;

            return(Id == other.Id && datesCloseEnough && string.Equals(Data, other.Data));
        }