When using a memory stream in a using statement do I need to call close? For instance is ms.Close() needed here?
using (MemoryStream ms = new MemoryStream(byteArray))
{
// stuff
ms.Close();
}
question from:https://stackoverflow.com/questions/11968289/memorystream-in-using-statement-do-i-need-to-call-close