vote up 5 vote down star

Possible Duplicate:
Do you say No to C# Regions?

Hi,

I came across few articles on blogs saying that using regions in C# is really bad practice and it involves performance impacts to end product.

Is it really so ? If yes, then why it is so..

I'm a great fan of regions and thanks to C# regions that my code remains quite manageble and readable.

Here's the article I'm referring to.

Thanks.

flag

67% accept rate
Duplicate many times over – ChrisF Jun 22 at 14:32
That blog makes about as much sense as someone telling you not to write comments. I don't necessarily use regions to collapse code, but it does force organization, and that's a good thing. – stevedbrown Jun 22 at 14:33
4  
Where does that article mention performance? – AakashM Jun 22 at 14:33
I was literally arguing with one of my old coding friend. He suggested me to use methods over regions. Now everything has a right purpose and you can not use that thing beyond that purpose. Methods were introduces for logical decomposition of a big problem while I feel regions are for organizing your code for maintainability. – curious_geek Jun 22 at 14:37
1  
We would not have added them to the language if we believed they were a bad idea! Though I do not personally use them much myself, lots of people like them. – Eric Lippert Jun 22 at 14:42
show 2 more comments

closed as exact duplicate by Gishu, Ionut G. Stan, John Rasch, Henk Holterman, LFSR Consulting Jun 22 at 14:55

11 Answers

vote up 29 vote down check

Whoever wrote that #regions has a performance impact to the end product had no idea what they were talking about. It's incorrect. They don't appear in the end product in any way.

Regions are a great way to group code in your development environment into whatever categories you feel are important. It essentially allows you to only focus on a subset of your class for short period of time.

I personally like regions and use them frequently. I don't feel it's a sign of bad code at all. It simply allows me to navigate my code faster and keep methods with similar purpose in similar locations (events, overrides, public, private etc ...).

EDIT

Wanted to respond a bit more to the people who think regions are evil because they hide bad code.

Just because a feature can be used for bad purposes does not mean the feature is bad. Almost every feature added to a language can be used / abused for nefarious purposes. This does not make the feature evil, just the use.

When deciding whether or not a feature should be used or not, you certainly must weigh in the abuse factor, it's consequences and mitigations. The consequence here is hiding bad code and the mitigation is code reviews.

Note the word hide. Removing the regions won't prevent people from checking in bad code (I'm beginning to believe nothing ever will). It simply prevents people who care deeply about their code organization from using a tool to organize their code. Hence you only end up hurting the people with passion.

I find the potential for abuse to be small here. I typically find that bad code is simply a result of laziness or lack of passion. These are the same people who don't care enough to use features like regions.

Lastly if code hiding is really a problem in your code base, then your code review process is the problem. Regions don't hide bad code during a code review. Banning regions won't help this any.

link|flag
3  
Using regions has no performance impact. However, i strongly disagree that they are a "great way to groupe code". For the one coding they are a great way to hide code so bad he is ashamed to show it, and the for one reading the code they are a great way to miss important details. If your class/method is so messy/long that you feel the need to add regions, then you probably should refactor. – Ksempac Jun 22 at 14:35
@Ksempac, You've provided no argument supporting your premise that regions are not a great way to group code. You've only provided the argument that they can be abused to hide code. If you're only worried about the latter then you need a stronger code review process in your group. Regions don't hide code during a code review. – JaredPar Jun 22 at 14:38
@Ksempac: Not necessarly. A good example, if you are handling lots of events for controls on a form. You could easily end up writing a lot of methods for each event. Regions will allow you to group these together... i.e. #region Grid Events... #region Form Events and so on... Theres so many possible examples. – Chalkey Jun 22 at 14:42
@Ksempac, No way, programmers that write "bad" code (whatever that is) don't know they are doing it. They make no attempts to hide it. – DancesWithBamboo Jun 22 at 14:46
1  
However, we wouldn't even need to discuss this if Visual Studio had an automated refactoring plugin like the great Checkstyle plugin for Eclipse/Java. It automatically group methods and fields together according to the rules you set so that you don't bother anymore trying to find where to put your latest method. – Ksempac Jun 22 at 14:50
show 6 more comments
vote up 7 vote down

They don't have a performance impact, but if you find yourself grouping things into regions, it might be a sign that your code needs to be refactored. If you're grouping lines of code in a method with a region, consider extracting those lines out as a method. If you're grouping several methods with a region, consider extracting them into a new class. Your code will end up a lot more modular and flexible that way.

link|flag
vote up 4 vote down

You won't get any performance hits from using regions as they aren't included in compiled code. They only exist for the IDE to use.

I think the biggest criticism of #regions is that it allows programmers to write several lines of messy or bad code and hide it away. Not using regions should force a programmer to try to come up with a neater way to organize code, instead of just opting to hide it from view.

I've seen this a lot in code, where programmers will encapsulate a long, messy block of code within part of a method, when in reality that code should have been extracted to its own method if it didn't belong in the normal flow of the code in that method.

There are also cases where a class is so big, programmers use regions to make the code easier to manage. In that case, you should be refactoring into more classes in most cases, not trying to collapse code with #regions.

IDEs do a fairly decent job of helping you traverse through code so you shouldn't need to use #regions in most cases.

link|flag
Aha... It's better to learn coding without regions. – Arnis L. Jun 22 at 14:34
vote up 1 vote down

Here is another thread on that topic Click here

link|flag
As a side note..regardless what people say, I use them all the time. I just prefer to be able to collapse pieces of code or functions at times. Performance in not impacted at all. – Cody C Jun 22 at 14:31
Visual Studio allows you to collapse methods even if you don't have regions. – Mark Seemann Jun 22 at 14:34
Agreed but I like to be able to collapse groups of methods. Like I said, it's just a personal preference. – Cody C Jun 22 at 14:39
vote up 1 vote down

I'm going to say confidently, without even checking, that regions have no performance impact. They are stripped by the preprocessor.

link|flag
1  
right, they do not have any runtime identity like anyother preprocessor. – curious_geek Jun 22 at 14:33
vote up 1 vote down

I don't have enough reputation to post a comment to your question...but I don't see any reference in that article to regions having a performance impact.

link|flag
vote up 1 vote down

David Ing on twitter:

"#regions blocks in code are the equivalent of putting down the toilet lid but not actually flushing"

link|flag
vote up 0 vote down

What performance impact? I have never heard of any performance impact because of regions? And the blog you linked to contains nothing about performance.

I guess it all depends on how good you are at organizing your code - because that is basically what regions are for.

link|flag
vote up 0 vote down

I'm not a fan of #region either and agree the Structure Explorer is a far better alternative. I have seen 5k lines of code shrunk to nothing with regions and you don't get the feel that something is wrong...at least not as easily.

I don't think the article was implying the feature itself compiles to bad code, but is a feature that makes it easier to stop looking large chunks of ugly code, and therefore forget about them. Maybe it affects "maintainability" more than "performance".

link|flag
vote up 0 vote down

I hate regions. I know it's a really subjective thing, some of my colleagues use and like them...

They have no performance impact, that much is clear.

But if you want to get rid of them (i.e. expand all regions) use the neat keyboard shortcut Ctrl+M Ctrl+P

link|flag
vote up 0 vote down

Regions seem to bring a strong debate among developers about hiding bad code and so forth. A simple Ctrl+M,O shows any evil hidden segments of code. No excuses for hiding. I agree with Jared that it's excellent for grouping logical sections of code and, of course, has no performance impact. Use it if you like. Don't if you dislike. nuf said.

Personally, I think there are much more fundamental and advanced techniques we should have a more religious opinion on and let the region battle go.

link|flag

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