Ejemplo n.º 1
0
 protected bool Equals(TimeSeriesKey other)
 {
     return year == other.year && month == other.month && day == other.day &&
            string.Equals(feature, other.feature);
 }
Ejemplo n.º 2
0
 public TimeSeries(TimeSeriesKey key, ImmutableArray <GraphPoint> values)
 {
     Key    = key;
     Values = values;
 }