Can someone explain why these nested `using` is different from the ordinary one?
How is this:
different from:
different from:
using(resource1)
using(resource2)
{
// Code here
}using(resource1)
{
using(resource2)
{
// Code here
}
}