Example #1
0
 protected bool Equals(PeriodList other) => string.Equals(TzId, other.TzId, StringComparison.OrdinalIgnoreCase) &&
 CollectionHelpers.Equals(Periods, other.Periods);
Example #2
0
 protected bool Equals(PeriodList other)
 {
     return(string.Equals(TzId, other.TzId) && CollectionHelpers.Equals(Periods, other.Periods));
 }