I was reading the following answer about regions on the topic of programming standards:
I tend to agree with what @Cumbayah is saying, but I have to admit that there's one place where I'm relying on regions to keep the code tidy. That's in the Global.asax to keep my long list of routes somewhat legible.
The thing is, there's 5 - 10 Controllers and each has a handfull of routes into it, some specifically for certain action methods and others more general. So with that we're talking ~30,40,50ish route definitions defined in a single method in Global.asax. Right now I have them divided into different #Regions for each Controller to tidy it up a bit, but there sure is a stink off it! Is there a better way for me to do this?