vote up 1 vote down star

How can I set Resharper to wrap, say, the generated equality members with regions when selected from the Alt+Insert menu?

Thanks

flag

70% accept rate

3 Answers

vote up 3 vote down

Hi, it doesn't really answer your question, but I just can't resist to try to convince you NOT to use regions. Why would you want to do it? The obvious disadvantages of regions are:

  • they don't compile, so you can never know if the name of the region really describes what is inside
  • regions are often used to hide rubbish code. The thinking here is: you can't see the rubbish bits, so it is as if they didn't exist. But guess what, they still exist...
  • regions are just textual, they don't have any semantic meaning. That means that the code inside the region can change the state of another region - which doesn't help to figure out what is happening in the class at all
  • if you structure your code correctly, it should be obvious what it is doing anyway

I believe using regions makes sense pretty much only for automatically generated parts, e.g. WinForms designer stuff. In most (all?) other cases it is much better to refactor the code, extract some extra classes or methods, etc. to make it clear.

link|flag
+1 the time spent 'neatly' arranging your code into region blocks could better be spent neatly arranging your code into proper classes – dss539 Sep 28 at 18:02
vote up 1 vote down

there is usually a "wrap in regions" option towards the bottom of the dialog box, but not for this one. I would submit that to JetBrains as a request. For the time being, you'll have to select the generated methods and use the ctrl->E,U,5 (surroundwith shortcut) to get the expected result.

link|flag
vote up 1 vote down

You can highlight the text you are interested in wrapping and use the Visual Studio key shortcut of CTRL + k, s selecting #region from the menu.

link|flag

Your Answer

Get an OpenID
or

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