vote up 1 vote down star

Possible Duplicates:
using regions in C# is considered bad practice ?
Do you say No to C# Regions?

Hello everyone. Is it a good coding practice to use #region in C# code. Can you please direct me to a good resource about how to use it.

Thanks

flag

1  
try here: stackoverflow.com/questions/1027504/… – Martin Harris Oct 6 at 8:19

closed as exact duplicate by leppie, Martin Harris, Mitch Wheat, Greg Hewgill, Galwegian Oct 6 at 8:21

4 Answers

vote up 1 vote down check

Framework Design Guidelines 2nd has the following related to regions usage:

DO use #region blocks around not publicly callable and explicit interface implementation groups.

#region internal members ...
#endregion
#region private members ...
#endregion

Vance Morrison: I find this guideline to be surprisingly useful. I now get highly annoyed if I can’t collapse the class and quickly see just the public surface of the class.

link|flag
Thanks. I found the guidelines useful too. – kobra Oct 8 at 0:47
vote up 1 vote down

Well, while I agree that #region is evil, i find it useful for hiding copyright and legal information on top of documents.

link|flag
vote up 3 vote down

The common knowledge on this is rather that if you need to use #region to structure your code then you're doing something wrong or your class is too big. There are quite a few questions on this topic here on SO, for example

link|flag
vote up 4 vote down

It's simple to use, just use

#region Name of Region

and

#endregion

and you can collapse code in the tags.

Whether you should use it is debatable. In my opinion, using regions ioften hides issues with the code itself. Long Classes are often disguised with regions.

link|flag

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