I've come across some code like so:
using (StreamReader myStream = new StreamReader(responseStream))
{
response = myStream.ReadToEnd();
myStream.Close(); //Is this necessary?
}
I don't think this .Close() statement is necessary. My understanding is that the stream will close once we step out of the final brace of the using statement, right?