Hi Marcus,
Yes that's correct - it does call Reset internally just to make sure the enumerator starts from the first item. We have removed the Reset and this problem will not appear in future SP's. For the time being you can use the following code to workaround the
NDataSeriesDouble dataSeries = new NDataSeriesDouble();
IEnumerator enumerator = new double[] { 0, 1 }.Select(x => x).GetEnumerator();
while (enumerator.MoveNext())
{
dataSeries.Add(enumerator.Current);
}
Hope this helps - let us know if you meet any problems or have any questions.
Best Regards,
Nevron Support Team