Tried and tested. It's as simple as follows:
string line = File.ReadLines(filePath).ElementAt(actualLineNumber - 1);
As long as you have a text file, this should work. Later, depending upon what data you expect to read, you can cast the string accordingly and use it.