Nested Using Statements
Just a quick note about the ongoing debate around nested using statements for multiple disposals.
True, you can do this:
using (StreamWriter w1 = File.CreateText("W1"))
using (StreamWriter w2 = File.CreateText("W2"))
{
// code here
}
but after working a lot on
nGineer, I found that you can also do this:
using (StreamWriter w1 = File.CreateText("W1"),
w2 = File.CreateText("W2"))
{
// code here
}
which in my book, is a lot easier.