This question isn't directly related to coding, but more to do with the efficiency and organisation of the c++ code. I have loads of declarations of arrays with preset data so they take up quite a lot of space.
I don't know whether this is a visual studio 2012 only feature but with functions I am able to minimise it so all I see is the name "void randomfunction()", this means I really speed up coding by collapsing all functions that I know are done and dusted for the time being.
What I would like to know if this is possible with any other parts of the code, like when you want to add a comment you // before typing. Is it possible to define two boundaries around a chunk of code so that I can collapse it.
Ok thanks guys for help im using the #pragma region #pragma endregion commands, how would i name the region so that if i create multiple i can know which is which whithout opening?