Hmm, here is much work to be done.
You are really messing things.
This code does not even complie.
To do your simple program, you can do:
class Program
{
static void Main(string[] args)
{
string filePath = @"C:\YourFolder\testFile.txt";
StreamReader sr = new Streamreader(filePath);
string line = "";
for (int i = 0; i < 1; i++)
line = sr.ReadLine();
sr.Dispose();
Console.WriteLine(line);
Console.ReadLine();
}
}