Date and Indexes
Created at 27 Dec 2016, 15:50
Date and Indexes
27 Dec 2016, 15:50
Hi,
How can I extract the indexes between a certain date?
I need to know the higher / lower points between 08:00 - 12:00.
Thanks
sweetman_dave
29 Dec 2016, 14:42
public int GetIndexByTime(DateTime dateTime)
public int GetIndexByExactTime(DateTime dateTime)
If data is missing at dateTime, the first method returns the nearest index. The second method (ExactTime) returns the exact index or -1 if data is missing.
@sweetman_dave