Пример #1
0
 public override int GetHashCode()
 {
     unchecked
     {
         return((UtcFrom.GetHashCode() * 397) ^ UtcTo.GetHashCode());
     }
 }
Пример #2
0
 public bool Equals(TimeRange other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(UtcFrom.Equals(other.UtcFrom) && UtcTo.Equals(other.UtcTo));
 }