Tagged Questions

1
vote
2answers
106 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 …
0
votes
5answers
108 views

how to organize the code similar to #region/#endregion in .NET?

Hi, 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 …
0
votes
1answer
44 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 …