vote up 27 vote down star
8

The idea behind the question is - Just say No! to C# Regions

It is said that "the reason to use #region tags because all the things they are hiding is just really bad code."

How do you use regions effectively?

flag
11  
So not using regions equals better code? It's not like the bad code is going to go away. In a big project, there are better places to "hide" code. That blog post is just too naive. – Jabe Apr 16 at 11:18
1  
Who would have thought that a seemingly harmless topic such as regions can lead to such a heated discussion? :-) – Adrian Grigore Apr 16 at 11:53
show 7 more comments

39 Answers

1 2 next
vote up 74 vote down check

Absolutely an unresounding yes.

Its a little known fact that regions were actually added to the C# language by Satan himself.

Edit: The only excuse for using them is to hide designer generated code. Using them to group methods/properties by protection level is the most infuriating thing, ever! It achieves absolutely nothing but confusion. If you have THAT MUCH code in a single file, you need to refactor. SRP anyone?

link|flag
10  
The dreaded feature request nr 666 ;-). – Gamecat Apr 16 at 10:31
2  
of what, where? coke? probably. code inside a branch or method? yes, in a class? probably not. If you abide by this, you cant go wrong en.wikipedia.org/wiki/… – Andrew Bullock Apr 16 at 11:40
10  
Right. And the more often cases where you have medium objects? In the end, it's a choice you make and live with it. But arguments such as "it's ugly" or "it's used to hide bad code" are just childish. Some people are used to this and it helps code navigation... – Dan C. Apr 16 at 14:34
4  
Clicking ? Child classes ? You don't need to click. You can have hotkey. There is nothing worst then classes that are there just because you need to wrap something up that generally shouldn't be in class or function by its semantics. – majkinetor Apr 16 at 14:42
2  
@Andrew: you didn't, however you took an awfully aggressive stance. As said by others, hindering navigation and readability is just a personal opinion. – Dan C. Apr 16 at 17:50
show 24 more comments
vote up 63 vote down

Three categories of uses for #regions:

1. Perfectly reasonable and downright helpful uses of #regions, for example:

  • Long variable definitions, e.g. some long string of bytes you have hard coded in your source
  • Designer generated code
  • Some embedded documentation or history, see old source control that appends history to the top/bottom of the file

Basically, in practice you may have to include some ugly artifact in your code depending on some tool or some strange requirement which is helpful or needed for some reason, but its not something you want to scroll over all the time. So you compromise by keeping it in your code but stashing it away so its not in your face.

2. Illegal uses of #regions punishable by WTFs such as:

  • Hide 'ugly code'
  • Copy and paste big chunks of code around (ever heard of a subroutine?)
  • Hide malicious or back-door code that lazy reviewers don't ask about.

3. Then, there are uses that depend on your preference, such as:

  • Using it to group members with related functionality
  • Using it to group types of class members (private, public, methods, properties, etc.)

This is a preference, but I believe that it is much more useful to group members by relationship or functionality rather than simply their type.

For example, grouping constructors may make sense because they all perform a similar function and may very well call each other, therefore it may be helpful to group them in a #constructors region. Whereas, you could have several private methods that do all kinds of different functions, some serving one set of properties, some serving the constructors. Therefore, just the fact that they are private methods does not imply that they are strongly related or that they should be grouped. Maybe they could instead be grouped by what kinds of application specific functions they perform. Maybe some are dedicated to order submission and others are dedicated to data conversion.

As developers, we naturally like to group things by type, but we have to remember that it is sometimes more helpful to group things by some functional relation instead.

But, as I said, this last group is largely up to preference, and heavily depends on the type of application and also your mood.

Also, don't forget there are other ways to organize your code such as partial classes or further refactoring of a class into multiple modules.

tl;dr Go ahead, use #regions!

link|flag
7  
+ Great Answer! This makes much more sense than flame-war'ing about whether or not #regions are evil. Another suggstion for category 3: Grouping code by functionality. (e.g. I sometimes use #regions to group MouseMove/Up/Down event handlers, they just "belong together") – Niki Apr 16 at 13:37
1  
+1 for nuanced answer – Tormod FjeldskÃ¥r Apr 17 at 12:33
9  
IMHO this should have been the accepted answer – Rob Sanders May 8 at 13:52
1  
THIS is what the accepted answer to this question should have been. – galaktor Nov 1 at 10:58
1  
Thanks all for the nice comments, good to see people are being open minded. – TJB Nov 2 at 18:02
show 2 more comments
vote up 41 vote down

I use regions extensively and instantly dislike any code that doesn't structure its various members into logically separated "regions".

Usually, My classes are divided into the following regions:

  • Private Fields
  • Public Methods(including Public Constructors)
  • Private Methods
  • Public Properties

This is however, a generalization. Some people like to structure class members based on function.

link|flag
13  
I use regions, but I hate separating functions by accessibility in regions. I don't think they help. I think logical separation by functionality is a better way to organize code. – Mehrdad Afshari Apr 16 at 11:21
13  
If there was ever a use for regions, this is absolutely not it. What does this achieve? All it does is obfuscate the code. You should organise your code by purpose and function, not protection level. What does that have to do with anything. This really grinds my gears! – Andrew Bullock Apr 16 at 11:22
2  
Fields, Properties, Ctors, Methods (then methods regioned by their responsibilities) is my preference – Chris S Apr 16 at 11:33
6  
How about a region for each letter of the alphabet? ;-) – edg Apr 16 at 12:00
4  
For me, grouping by accessibility (well, it's actually by type, i.e. separate into Fields, Properties, Methods and Implementation) is kinda helpful. I find it that most of the time, fields and properties are "fire and forget", most of the maintenance work is in methods. Collapsible regions help here – Dan C. Apr 16 at 14:08
show 10 more comments
vote up 22 vote down

I use #regions to hide designer-generated code, but that's it.

link|flag
4  
.NET has support for partial classes now, so designer generated code can be in a different file from user generated code. There is no good reason to use regions. – Wedge Apr 16 at 22:35
show 2 more comments
vote up 17 vote down

I actually like using regions, and feel they can be very useful for making logical groupings in a class. For example I had a class with various derivatives which certain methods corresponded to different things (visual, functional, child object management). Splitting these up into regions makes it clearer where things are, and can give you a good overview if you have appropriately named regions.

You could split these into partial classes, like the designer class is. But ultimately that reaches a very similar conclusion, and you have a lot more class files that you'll need to name appropriately.

You can also use searching, but some of the projects I'm working on, searching is slow. And it's much better if you can learn your way around the code, and find things quickly than having to wait for a time consuming search.

I have also used them within a few algorithms for understanding and maintainability. Honestly I don't think I'd advocate this and it's always better to split things up into methods, but that isn't so easy with the algorithms that I'm working with. Therefore breaking it up into logical sections, and then adding more comments + detail within the regions seemed the best bet to me at the time, and honestly is taking a modular approach to it. You have a method, with a description of what it does. You have regions within the method that explain what that section of code does (with comments) and then you can go down to individual lines of code which may also be commented. So it helps you to drill down to get more information quickly and easily.

I think they're are fine for logical grouping in classes. I think they can work in code/methods but should be avoided if splitting code into more methods is the most suitable approach.

link|flag
1  
+1 because there was no reason to down vote a well explained answer on a subjective question. – sipwiz Apr 16 at 10:48
show 1 more comment
vote up 12 vote down

Does it really matter? I am seriously asking this question.

A normal IDE probably has a feature to completely turn off Region hiding. So If someone doesn't like it he can just turn it off. So he will never have something hidden. And if someone like it, then he just use it.

I believe that it is very subjective. A good programmer knows what pieces of code he has to look at no matter if something is hidden with region or not.

link|flag
show 3 more comments
vote up 9 vote down

Personally I don't like hammers, because you can break so much with them, including fingers.

link|flag
1  
@Adrian: Swing and a miss. Not used to irony, eh? – Beska Apr 16 at 15:12
1  
I'm really not sure this is irony. There are actually lots of people refusing to use good tools because they are afraid of misusing them. Take Linus Thorvalds, for instance, who claims that C is superior to C++ because C++ "leads to bad design choices". Quite the same attitude as lassevk's answer. – Adrian Grigore Apr 16 at 16:50
2  
+1 Adrian, just cause someone doesn't know how to use a tool, doesn't make it a crappy tool. – SnOrfus Apr 16 at 18:23
show 3 more comments
vote up 9 vote down

I disagree with the article's author. Using regions does not automatically make you write bad, unstructured code. It really depends of what you are using them for.

For example, I use them to mark different parts of my MVC controller classes, such as Create, Edit and Delete. Edit and Delete contain two different methods (POST and GET) plus a custom View Model in some cases. By wrapping each of these functionalities in one outlining region, I can work on one of them for a longer time without having to see all the other functionalities that do not concern me at the moment anyway.

This does not influence my style of coding. It just makes the file a bit less cluttered with details I do not need to see at the moment. Therefore this usage of code regions is not bad.

If I used code regions to hide a myriad of helper functions and objects which might be better off in their own separate objects, that would be a completely different story. But as I said, I really depends on what you are using code regions for.

link|flag
show 4 more comments
vote up 7 vote down

I use regions to group the members of classes, like Properties, Constructors and Methods. It helps keeping a nice structure in the classes, and when compacted you get a nice overview that you can easily navigate without having to use the search (which sometimes takes several seconds just to show up...).

link|flag
2  
if your classes have 1 responsibility, you usually have to edit multiple types of members on the class, which makes the regions annoying, since the property for this private is not near it. And methods that use it are over there in a bucket. – DevelopingChris Apr 16 at 10:34
show 4 more comments
vote up 6 vote down

To turn off region collapsing in Visual Studio:

CTRL + M, CTRL + P

Or, from the menu:

Edit > Outlining > Stop Outlining

link|flag
show 2 more comments
vote up 5 vote down

I say yes... Coupled with Regionerate and my own flavor of regions I love it. I use this on most classes unless they contain such little code that it is unnecessary.


Regions I declare are as follows:

Declarations
Constructors
Overrides
Methods
Properties
Event Handlers

link|flag
show 5 more comments
vote up 3 vote down

I say "No!" to regions, code folding, and anything else that resembles them. When I'm looking at a source file, I want to see the source. I use search to move around inside the file, so regions can only slow me down.

link|flag
7  
In VS, search will (by default, you can change this) include hidden code. This includes incremental search. – Richard Apr 16 at 10:16
3  
That doesn't speed up my work, though. If I don't want to see some code, I scroll it away. If there's so much code in the file that this isn't practical, it's usually a good sign that there are larger problems. – Hank Gay Apr 16 at 10:28
1  
+1 hank, if its so bad that you can't just read it, its bad, fix it. – DevelopingChris Apr 16 at 10:35
show 3 more comments
vote up 3 vote down

I use regions in several cases.

  • explicit implementation of
  • interface(s) nested types
  • synchronous and asynchronous methods
link|flag
vote up 2 vote down

I use regions to hide away large sets of properties and member variables, that's it though

link|flag
vote up 2 vote down

Regions and code folding can be useful where there are multiple distinct parts to a class, e.g. in a WinForms form separating layout from calling into business logic.

But they are not a substitute for good coding.

link|flag
4  
Surely your business logic should live in its own class, rather than inside your WinForms form...? – Richard E Apr 16 at 10:25
1  
I think that is an encapsulation mistake, and regions are the smell that help you find that garbage. – DevelopingChris Apr 16 at 10:36
show 1 more comment
vote up 2 vote down

I use regions and like them. Amongst other things I find them very handy to wrap up logical groupings of methods in a class. For example I'll have a region for "UI Methods" another region for "Server communications" etc. It makes it very easy to narrow the focus when reviewing a class.

As far as using regions to hide bad code I don't see how anyone could pretend to do that; right click, select Toggle Outlining and all the regions are expanded, not really somewhere safe to hide. If I wanted to hide bad code I'd write a C library and access it with from a .Net assembly with PInvoke, that would keep 95% of .Net developers out.

link|flag
show 1 more comment
vote up 2 vote down

I wonder, how can anybody say that regions are bad ??? I mean, its like saying comments are bad, because regions are just commented containers. Why even arguing about it... don't' use it if you don't like it, don't theory craft about the thing cuz you don't like it.

I see that lot of people here seem to talk about only one category of programs - those that involve large teams, developed for years, with requirements and people changing constantly, in which case you should probably stick with the best practices and patterns. But that's only buisnis programming. There are different kind of people and different kind of programs and note all of them have to look the same !

Now, back to the regions. I use them exclusively. If I have to do 3 tasks in 1 function, I create 3 regions. Refactor? Yeah right... :S How many times will you repeat that. You refactor, I am perfectly happy with my regioned code the way it is.

In order to be good user of regions, you must IMO, implement procedure similar to this one:

  1. Hotkey to toggle region, and to collapse entire code. I keep ctrl + darrow as hotkey for that as while u surfe the code you can quicly jump in out of region.
  2. HotKey to collapse all regions, so I can quickly create what I call TOC for the code file. I even use .cs file to store common project information (docs, notes etc..) which doesn't contain C# code at all, it just has .cs extension so I can organise it using regions.
  3. Macro to create region of selected code. I keep it on F12

    #Region "CreateRegion" :P    
    Sub CreateRegion()
        Dim regionName As String
        Dim sb As New StringBuilder
        Dim regionBegin, regionEnd As String
        Dim selection As TextSelection
    
    
    
    regionName = InputBox("Enter region name:", "REQUEST FOR INFO")
    
    
    'We don't want to go any further if the user clicked cancelled
    If regionName.Length = 0 AndAlso WasInputBoxCancelled(regionName) Then Return
    
    
    selection = DTE.ActiveDocument.Selection
    
    
    Select Case GetActiveFileExtension()
        Case "vb"
            regionBegin = String.Format("#Region ""{0}""", regionName)
            regionEnd = String.Format("#End Region '{0}", regionName)
        Case Else
            regionBegin = String.Format("#region {0}", regionName)
            regionEnd = String.Format("#endregion {0}", regionName)
    End Select
    
    
    sb.Append(regionBegin)
    sb.Append(vbNewLine, 2)
    sb.Append(selection.Text)
    sb.Append(vbNewLine)
    sb.Append(regionEnd)
    sb.Append(vbNewLine)
    
    
    selection.Delete()
    selection.Insert(sb.ToString(), vsInsertFlags.vsInsertFlagsContainNewText)
    selection.SmartFormat()
    
    End Sub #End Region 'CreateRegion

I wish there are regions in all editors :D

link|flag
vote up 2 vote down

I use them to hide huge sets of properties that tend to be in the way while looking through code. I know... OCD... but it drives me nuts otherwise.

link|flag
1  
Excellent example of why regions exist. – pearcewg Apr 17 at 1:29
vote up 2 vote down

Regions are useful for hiding code that does not need to be edited.

For instance:

  • Designer-generated code
  • Code emitted by any other code-generation tool
  • Code that's commented out but kept for future reference (due to fear of losing it in the source-control system).

Regions shouldn't be used for code that does need to be maintained, because they make it too hard to see the code.

In particular, they don't work properly with outlining. CollapseToDefinitions also collapses the regions. There's no command to collapse method/property bodies but expand regions.

For those of you unfortunate enough to work in a shop that's enamored of regions, here's a macro you can use to collapse methods and properties but expand regions:

Sub CollapseToDefinitionsButExpandAllRegions()
    DTE.ExecuteCommand("Edit.CollapsetoDefinitions")
    DTE.SuppressUI = True
    Dim objSelection As TextSelection = 
        CType(DTE.ActiveDocument.Selection, TextSelection)
    objSelection.StartOfDocument()
    Do While objSelection.FindText(
        "#region", vsFindOptions.vsFindOptionsMatchInHiddenText)
    Loop
    objSelection.StartOfDocument()
    DTE.SuppressUI = False
End Sub

You can assign that to a key so you can easily collapse but still see the code. The only drawback is that it also expands regions that are inside a method body, which means those methods won't be collapsed. If anyone has any improvements that'll solve that problem, feel free to add them.

link|flag
vote up 1 vote down

it's strange, a guy I work with who I would consider our most talented programmer uses regions all over the place. but then he also writes comments like

//create thing
thing someobject = new thing();

With me being the junior and he being the senior engineer, these are things I try to avoid picking up. But like others have mentioned, sometimes it's easy to assume that's the way it's done if you're learning and you see it there already!

link|flag
1  
This is the perfect analogy, I think. Redundant information in regions is just as bad as redundant information in comments. In exactly the same way, it goes stale as the code is maintained. – Earwicker Apr 17 at 20:45
vote up 1 vote down

The other day we had a discussion about this at work.

Conclusion: regions represent a code-smell. If your code needs them you should probably refactor.

One of the worst examples I encountered was a method, spanning about 7 screens, which used regions as a twisted form of comments:

#region GetDataForDatabase
.. do stuff..
#endregion

#region FillTheCollection
.. do stuff...
#endregion

So, that's an example of NOT using regions effectively. This post contains a few possible good uses for region. But I'm still not convinced...

link|flag
show 2 more comments
vote up 1 vote down

I code c# with WPF and found #region quite useful, for example to hide all the dependency property registration and the wrapper CLR properties. Another usage of the #region construct is for example to hide the geometry of an object which extends Shape; once the geometry drawing algorithms is coded, I want to focus on other things and therefore hide it in #region internal geometry.

link|flag
show 1 more comment
vote up 1 vote down

I both like AND dislike regions.

They are great for organising code into general areas such as 'all properties', 'all fields' etc and then hiding them away - great for stuff like control development were there are usually a lot of properties with backing-store and auto-props can't be used if you're following a notify property change pattern.

And they are great when you are implementing several interfaces and you want to group the interface implementations separately from the main implementation.

But they do get in the way when you want to see the entirety of the code or you are browsing through it looking for something. And even worse when it's someone else's code and they don't agree with your conventions for naming and grouping :-)

What I would like to see is an easily accessible feature in Visual Studio that allowed a 'with-regions' and 'without-regions' toggling option so I could have the best of both worlds when it suited me. Perhaps such things will be easy to implement as extensions to the IDE in VS2010.

link|flag
vote up 1 vote down

Given the code base I'm using now, it appears most developers believe a region is a class. Regions often indicate code that is unrelated to the rest of the code in the file, share few dependencies, etc, in otherwords signs that it should be a separate encapsulated class.

Regions encourage bad programming on the level of sabotage.

Regions are the rug under which sloppy developers sweep their shame.

As a maintenance developer, I can't read code with Visual Studio constantly collapsing and hiding code from me.

I remove all regions on sight.

link|flag
vote up 0 vote down

We use a quite strict layout of the class code files (basically nested types such as classes, enums, delegate definitions etc), then static members with fields first, then instance members with fields, then constructors, then the rest). Some tools such as ReSharper support automatic reordering of the members, so that maintaining this structure is not painful at all. But it makes navigation in the file quite intuitive and since then, I haven't used regions anymore.

link|flag
vote up 0 vote down
  • Use regions where they are automatically generated. Do not waste time deleting them ;-).
  • Expect generators to use regions.
  • Use Class View, Search, Incremental Search, Code Folding (and shortcut keys), Source Outliner powertoy, ReSharper, Code Rush etc effectively. Do NOT use regions for functions provided by IDE, tools and views.
  • Within single method, if algorithm is complicated, use (effectively) regions to document
  • Use split window to look at two locations in one source file.
link|flag
show 2 more comments
vote up 0 vote down

I simply use it for grouping:

  • grouping methods by what they do, for example if there is a method AdjustDisplay and it uses Resize, MoveImage etc., i would put them in "adjusting display" region;
  • i don't know if it's a good idea but i sometimes group by private/public, so that i can easily find methods used from outside or helper methods - private ones.
link|flag
vote up 0 vote down

I use #region only to hide Dispose logic (for IDisposable implementation)

For all other cases, I try to refactor and keep my class small enough not to use regions.

link|flag
vote up 0 vote down

The use of regions tends to border on a religious debate, but I tend are with the use of them although I do wish they were more of a comment directive (e.g. /// #region to start a block) as opposed to a preprocessor directive.

In terms of my use of them:

  • Minimization of long strings - In short, if I have some really long string hard coded in the source code (typically a query that isn't being made into a view) then I will use a region around it so I can get it out of the way of other more relevant code.
  • Minimization of long blocks of private members - Fairly self explanatory; although automatic creation via properties in C# 3.5 is minimizing the need for this.
  • Minimization of long blocks of class properties - This one should be self explanatory and it more to help me scroll through a file quickly than anything else. Granted I could just search for what I am looking for, but when looking at a file I sometimes want to read through the entire file but looking at a bunch of property declarations doesn't add any value and wastes my time.
  • Minimization of blocks of constant declarations - This last one should also be be fairly self explanatory.
  • Minimization and grouping of required reimplementation details - Similar to what was mentioned by dance2die, if I need to implement some code for use of another class I might throw a region around it as it should never really need to be changed or be that unique.

Out side of those areas, I try to avoid regions for the most part and if I see a region inline with some code then it usually raises a red flag in my mind.

link|flag
vote up 0 vote down

I'm by no means a super programmer

but I use regions for 3 reasons

1) seperate methods from form controls ( i no it sounds silly but its a good way for me to no have to scroll through a ton of code to see what i need)

2) to clump code that doesn't appear to belong together but does ( calling a windows dll then the subs related to that

3) the IDE already uses it in various other parts so i figure it can't be that bad.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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