Example #1
0
 private TimePoints(TimePoints other)
 {
     _timepoints = new List <TimePoint>(other._timepoints);
 }
Example #2
0
 protected TimePoints(TimePoints other)
 {
     _timepoints = new ConcurrentQueue <TimePoint>(other._timepoints);
 }