Open
Description
So I tried to use the skip function as following:
MyReader.Skip(1);
Because you have to put in the seconds as an integer it is very inaccurate for precise skipping.
I found an overload with a TimeSpan argument. I parsed in some values for the FromSeconds method but it doesn't work.:
MyReader.Skip(TimeSpan.FromSeconds(1.0001));
Am I doing something wrong or is the overload corrupt?
Activity