This is how Visual Studio 2010 is formatting a three-deep nested method call:
Math.Cos(
Math.Cos(
Math.Cos(0)));
Notice that it’s not intending the last call. I’d expect it to indent like so:
Math.Cos(
Math.Cos(
Math.Cos(0)));
Any way to get VS to format like the latter?
No, the Edit + Advanced + Format Document command doesn’t touch that code. This is what you get when you press the Enter key. Simply type Tab on the 3rd line.