0
In the Visual Studio there is a resource called Directive #Region , a resource that collects and hides code sections.
Example
static void Main(string[] args)
{
#region MyRegion1
//My code Here
#endregion MyRegion1
#region MyRegion2
//My code Here
#endregion MyRegion2
#region MyRegion3
//My code Here
#endregion MyRegion3
}
Upshot
Is there a similar feature for Sublime Text 3 ?
kkkkk guy to tell the truth I hadn’t tried to hueheue , but I also saw that there is a feature called code Folding even so thank you.
– stringnome