in codevision editor For category code like(region)

61 Views Asked by At

In many language like java,c#,... , we use

    //region Variables
.
.
.
    //endregion

for category code. what we use instead "region" in CodeVision editor.

1

There are 1 best solutions below

0
On

In CodeVision there is no mechanism to do that exactly but I could do something similar with the following code:

//Your region name
{
    // Your code here
}

This way a little (-) minus sign will appear next to the open bracket then you can collapse it but you should consider that brackets make a scope so your variables will affect.