The commonly accepted way to format C# code seems to be as follows:
namespace SomeNamespace
{
namespace SomeSubNamespace
{
class SomeClass
{
void SomeFunction()
{
using (var someFile = new StreamWriter(somePath))
{
try
{
lock(someCriticalSection)
{
using (var someDisposableThing1 = new DisposableThing())
{
DoSomething();
using (var someDisposableThing2 = new DisposableThing())
{
lock(someOtherCriticalSection)
{
DoSomethingMore();
}
}
}
}
}
catch(Exception e)
{
Log(e);
}
}
}
}
}
This wastes a large amount of screen space, both horizontally and vertically. I'm surely not the first person who notices. My question is: do you live with it, or have you developed a different formatting style to avoid an excess of white space?
PS: Note that I didn't even use a single if statement yet!

SomeNamespace.SomeSubNamespace. Other than that, it's all pretty much "I'll live with it", since we don't know what is contained in those methods. – Kyle Rozendo Aug 27 '10 at 13:36