I use the code folding commands in Visual Studio 2008 all the time - e.g.
ctrl + m, ctrl + o (collapse all)
ctrl + m, ctrl + m (toggle expand/collapse of code block)
Visual Studio 2010 has the "improvement" that folded code now has a white space line between one block and the next. e.g.
void function1()[+]{...}
void function2()[+]{...}
Instead of the VS2008 way
void function1()[+]{...}
void function2()[+]{...}
Anyone know how to prevent VS2010 from adding this whiteline space - it's extremely irritating!
Update: it seems that lots of folks can't reproduce. but since this question has got 6 up votes to date, I'm assuming that there are those who can.
C# users report that they can't reproduce. I code in c++ exclusively and it's definitely a problem in c++. Maybe I'll post a report to m$...
