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
|
|
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
|
||||
|
closed as exact duplicate by leppie, Martin Harris, Mitch Wheat, Greg Hewgill, Galwegian Oct 6 at 8:21 |
|
|
Framework Design Guidelines 2nd has the following related to regions usage:
|
|||
|
|
|
Well, while I agree that #region is evil, i find it useful for hiding copyright and legal information on top of documents. |
||
|
|
|
|
The common knowledge on this is rather that if you need to use |
||
|
|
|
|
It's simple to use, just use
and
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. |
|||
|
|