Beispiel #1
0
 public Iter(params IValueIter[] list)
 {
     // Create an Index object.
     mIndex = new Index(list);
 }
Beispiel #2
0
 /// <summary>
 /// Access to the DateTime for the parent timeseries.
 /// </summary>
 public DateTime this[Index index]
 {
     get
     {
         int idx = index.TimestampOffset;
         if( mTimestamps == null )
             return mStartDateTime.AddDays(idx);
         else
             return mTimestamps[idx];
     }
 }