I was following example from microsoft site for reading from text file. They say to do it like this:
using System;
using System.IO;
class Test
{
public static void Main()
{
try
{
using (StreamReader sr = new StreamReader("TestFile.txt"));
{
String line = sr.ReadToEnd();
Console.WriteLine(line);
}
}
catch (Exception e)
{
Console.WriteLine("The file could not be read:");
Console.WriteLine(e.Message);
}
}
}
but when I do it like that in Visual C# 2010 it brings me errors:
Possible mistaken empty statement
The name 'sr' does not exist in current context
I removed the using part and now the code looks like this and is working:
try
{
StreamReader sr = new StreamReader("TestFile.txt");
String line = sr.ReadToEnd();
Console.WriteLine(line);
}
Why is that?
EDIT: there was semicolon at te end of using(....);
;after using statement; – lazyberezovsky Nov 13 '12 at 22:01