public override int GetHashCode() { unchecked { return((UtcFrom.GetHashCode() * 397) ^ UtcTo.GetHashCode()); } }
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)); }