The first sample is short-hand for:
TextReader readLogs = File.OpenText("C:\\FlashAuto\\Temp\\log.txt");
try
{
// My stuff
}
finally
{
if (readLogs != null)
{
((IDisposable)readLogs).Dispose();
}
}
Its not that its quicker, its that readLogs will be cleaned up even if an exception occurrs which won't happen in your second example.
See using Statement (C# Reference) for more information.
There is no need to call both Close and Dispose, internally the Close method does the same work as the Dispose method (its just renamed because developers are used to having a method called Close).
Update: There is also no difference between calling File.OpenText and new StreamReader - internally File.OpenText just creates and returns a new instance of StreamReader.