vote up 11 vote down star
5

When editing really long code blocks (which should definitely be refactored anyway, but that's beyond the scope of this question), I often long for the ability to collapse statement blocks like one can collapse function blocks. That is to say, it would be great if the minus icon appeared on the code outline for everything enclosed in braces. It seems to appear for functions, classes, regions, namespaces, usings, but not for conditional or iterative blocks. It would be fantastic if I could collapse things like ifs, switches, foreaches, that kind of thing!

Googling into that a bit, I discovered that apparently C++ outlining in VS allows this but C# outlining in VS does not. I don't really get why. Even notepad++ will so these collapses if I select the C# formatting, so I don't get why Visual Studio doesn't.

Does anyone know of a VS2008 add-in that will enable this behavior? Or some sort of hidden setting for it?

Edited to add: inserting regions is of course an option and it did already occur to me, but quite frankly, I shouldn't have to wrap things in a region that are already wrapped in braces... if I was going to edit the existing code, I would just refactor it to have better separation of concern anyway. ("wrapping" with new methods instead of regions ;)

flag

57% accept rate

8 Answers

vote up 4 vote down check

You can collapse specific blocks of text within visual studio, but you have to turn off automatic outlining.

Right click in your code window and select (Outlining | Stop Outlining)

Then, select some text, right click and select (Outlining | Hide Selection)

When you turn on automatic outlining again, your custom "Regions" will no longer collapse.

link|flag
1  
Fair enough. I'm hoping to find through this question a way to add these blocks to the automatic outlining though, as it doesn't really make sense for them not to be. – Grank Nov 12 '08 at 21:48
vote up 1 vote down

This feature has been added to Visual Studio 2010's C# editor. I can't find the source verifying it was actually put in, but I remember seeing it on one of the Dev 10 team member blogs talking about changes since Beta 1 or something. As a consolation, here's one Microsoft comment suggesting they wanted to add it.

link|flag
vote up 0 vote down

# region ,#endregion is the smart option.

link|flag
1  
StyleCop rule SA1123: DoNotPlaceRegionsWithinElements: A violation of this rule occurs whenever a region is placed within the body of a code element. In many editors, including Visual Studio, the region will appear collapsed by default, hiding the code within the region. It is generally a bad practice to hide code within the body of an element, as this can lead to bad decisions as the code is maintained over time. – 280Z28 Jul 19 at 20:17
vote up 0 vote down

BTW: I found that these two shortcuts made my life very easy:

Toggle outline: Ctrl + M, M Collapse All: Ctrl + M, O

link|flag
vote up 0 vote down

I will add here that in VS 2010 Microsoft has added WPF adorner capabilities using Managed Extensibility Framework (MEF), this will allow us to extend the source code editor to organize them in a much better way to make it more readable and accessible.

For instance the Summary Comments visualizer that Scott Gu demoed at PDC 2008.

So look forward to a better tomorrow for developers :)

link|flag
vote up 0 vote down

I upvoted the question because it's one of my pet peeves that #regions absolutely stink. They might do something very obscure in the background (in wich case I might adjust my opinion) but I doubt that. What I do believe is:

  • #regions don't increase readability
  • #regions make refactoring code harder because it's easy to accidentally cut out one end but forget or miss the other, leaving you with a mess that won't compile for no good reason.

Most of my c# career was spent maintaining existing code, in a team environment where I didn't get to decide the coding standards so the grass might be greener elsewhere, but seriously, who thought of a dumb way to make a comment look like a compiler directive and made it able to break a build?...

I often work on a piece of c# code on my Mac with textmate, just to get better code folding.

link|flag
Yes that means i want the requested functionality as well – Kris Nov 12 '08 at 21:46
Amen to that. I've actually seen cases where the programmer began a region in one method and closed it in the next. (On purpose!) Fortunately, VS 2008 doesn't allow that like 2003 did. – Jeromy Irvine Nov 13 '08 at 3:26
I think using regions is good practice if you put them in appropriate locations and name them well. It makes navigating code much quicker after you collapse to definition and expand out only a few things you need and regions hide the rest. – Chris Marisic Nov 13 '08 at 21:42
Chris Marisic: did you ever meet any code that had endregions named? there just is no easy way to see what region and endregion belongs to. You're also not stating anything that would make regions a better idea than normal code folding. – Kris Nov 14 '08 at 22:44
We always name the #endregion directive, in fact if you don't you will get a remark from the code reviewer. Using regions is fine, but you should enforce some regulations in your code guidelines. – Oxymoron May 12 at 7:32
vote up 2 vote down

Visual Studio 2008 supports regions inside of functions as long as you keep them in the same code hierarchical level

#region Won't work
for(int i = 0; i<Count; i++)
{
//do something
#endregion
}

for(int i=0; i<Count; i++)
{
#region Works fine
//do lots of stuff
#endregion
}
link|flag
This isn't new in 2008. 2005 supports it as well. – Kon M Nov 12 '08 at 21:47
vote up 5 vote down

I'm not aware of add-ins, but you mentioned regions and I see nothing wrong with doing something like this...

foreach (Item i in Items)
{
  #region something big happening here
  ...
  #endregion

  #region something big happening here too
  ...
  #endregion

  #region something big happening here also
  ...
  #endregion
}

EDIT: In response to the question's EDIT: You're right, sticking a bunch of regions everywhere isn't ideal and refactoring is probably the way to go. But it seems that you're looking for something magical that will "organize" the code for you, and I don't think that exists.

link|flag
IIRC, you can't define regions within a function. – Joel Coehoorn Nov 12 '08 at 21:24
2  
his code is correct; you are not limited to where you can define regions like this (as long as you aren't ending outside of scope of the beginning) – John Nov 12 '08 at 21:26
@john is correct – Kenny Nov 12 '08 at 21:41
Please see the edit of the original question; manual action required on the part of the developer (even using a one-or-two-click region-wrapping shortcut) doesn't really answer the question/desire for this to be done automatically – Grank Nov 12 '08 at 21:50
@Joel I believe you're thinking of VB.NET – Bryan Anderson Nov 12 '08 at 22:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.