Reputation: 4108
I'm working on a codebase that has so many regions that it is difficult to navigate the code and the collapse to definitions feature of visual studio is no longer useful.
Is there any way to tell Visual Studio to ignore the regions (or at least ignore them for the purposes of Collapse to Definitions?
Upvotes: 0
Views: 136
Reputation: 14153
The I Hate #Regions Extension expands all regions in your code and changes the #region
font to be very hard to see. There is no way to hide them completely in standard VS.
Note you must be using the new (free) Community Edition or a paid edition of Visual Studio to use extensions.
You may also want to take a look at this similar SO question.
Upvotes: 3