|
|
|
|
|
by varunsrin
5322 days ago
|
|
Hiding code is actually quite useful - its not meant to obscure code that doesn't belong, as you imply. Say for instance, I'm working on two methods that are expansive, but i'm trying to debug a small part of those methods. To make watching breakpoints and tracking flow easy I hide all but the necessary parts of the code. I use regions in pretty much the same way - once I have a certain region of functionality locked down and tested, I hide it so I can focus on the part that's still being developed / tested. |
|