Asked by reader. Answered by the Wonk on November 18, 2002
A.
There are a few more settings than just tabs that you can change in the automatic and manual code formatting provided by VS.NET. Tools->Options->Text Editor->C#->Formatting shows the available C# formatting options (as you can see in Figure 1).
Figure 3: C# formatting options
For prose, I prefer the settings as shown, because I like the opening brace on the same line as the construct, e.g.
if( foo ) {
...
}
I find this style better suited to a small amount of space than the formatting settings as provided out of the box:
if( foo )
{
...
}