Tagged Questions
The code-regions tag has no wiki summary.
15
votes
4answers
8k views
how to implement regions/code collapse in javascript
How can you implement regions a.k.a. code collapse for JavaScript in Visual Studio?
If there are hundreds of lines in javascript, it'll be more understandable using code folding with regions as in ...
14
votes
5answers
2k views
Why aren't code regions allowed within method bodies in VB.NET?
Normally I wouldn't "need" or even consider a ridiculous feature such as code regions within method bodies but: I'm refactoring VB.NET code where methods routinely run five hundred lines and the ...
10
votes
4answers
3k views
Regions/code collapse in Javascript in Visual Studio 2010
Is it possible to create code regions in JS files in Visual Studio 2010?
This method works in 2005, but I can't get working in 2010.
3
votes
2answers
2k views
Can you set some sort of custom code folding in Netbeans like in Visual Studio
When working on C#, I often do this:
#region Properties
public int Property1{get;set;}
...(more properties)
#endregion
This makes Visual Studio add the option to fold the code inside the ...
2
votes
1answer
298 views
Why StyleCop rule does not allow using #region in code?
I get the warning as below screenshot and I don't understand why it would be treated like that. I often need to "regionize" my codes.
What do you think?
2
votes
6answers
1k views
how to organize the code similar to #region/#endregion in .NET?
While the code is growing big it is getting harder and harder to keep everything well organized. One thing I liked very much the time I developed in .NET was #region/#endregion which enabled to ...
1
vote
2answers
214 views
Regions in Delphi - is it possible to define them unfold by default?
Since Delphi 2005 Borland/CodeGear introduced the regions in the IDE. It is good idea but in some casses I want my reginos to be unfolded by default in other folded. If there argument or options that ...
0
votes
3answers
124 views
Refactoring code smells in ASP.NET Web Forms Code Behind Files: Is it wise? Is it risky? Is it a waste of time?
Given a long method with Pac-Man ifs, would it be wise to:
Break down code blocks into regions.
Then refactor code blocks into methods.
Or would it be best to leave it alone?
Would it be risky?
...
0
votes
1answer
63 views
Need help with a macros for Visual Studio to cancel outlining at file open
As you can guess from the title, the outlining with regions finally made me sick.
I remember reading in comments somewhere that it is possible to have a macros to perform this task. Since I haven't ...