Can I use Visual Studio 2008 Professional as an IDE for Bennu?
I just want to be able to make 'regions' like in Visual Studio.
Regions are sections that you can define your code in between and when you do,
a + and - sign appear next to it, so you can either collapse, or expand that particular code.
This results in a lot more readability =D and excluding the things
you don't need to read at the moment.
Example:
[-]# region "Private fields"
Private
string greeting;
int i;
#region
Your code might then look like this:
- #region "Main Process"
- #region "Ship"
- #region "Enemies"