Tagged Questions
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 ...