Пример #1
0
        public bool Equals(PerformanceTime other)
        {
            if (IsDefined != other.IsDefined)
            {
                return(false);
            }

            if (!IsDefined)
            {
                return(true);
            }

            return(SingleExecutionTime.Equals(other.SingleExecutionTime));
        }
Пример #2
0
 public override int GetHashCode()
 {
     return(SingleExecutionTime.GetHashCode());
 }