I have found hundreds of answers reading line by line, but not one where you can specify the line you want to read. Say that my file looks like this:
A
B
C
D
E
and i want to read line #3 (in this case actually line 2 i guess - lets say I want the "C").
How do i do that?
I can of course make a loop and stop at the selected row, but isn't there a better (less ugly) way of doing this? Like MyStreamReader.Row(2).Read
or something similar?