Tagged Questions

14
votes
5answers
2k views

Why aren't code regions allowed within method bodies in VB.NET?

Normally I wouldn't "need" or even consider a ridiculous feature such as code regions within method bodies but: I'm refactoring VB.NET code where methods routinely run five hundred lines and the ...
2
votes
6answers
1k views

how to organize the code similar to #region/#endregion in .NET?

While the code is growing big it is getting harder and harder to keep everything well organized. One thing I liked very much the time I developed in .NET was #region/#endregion which enabled to ...