I want to read a line from a text file, except that I want to specify the line to read.
I've tried:
using (StreamReader reader = new StreamReader(@"C:\Program Files\TTVB\Users.txt"))
{ text = reader.ReadLine(acctMade); }
acctMade is an int.
This returns:
No overload for method 'ReadLine' takes 1 arguments