My controller has to enumerate all the areas in the application. Is it possible? And how?
+2
A:
From this issue, something like that =>
RouteTable.Routes.OfType<Route>()
.Where(r => r.DataTokens != null)
.Select(r => (string) r.DataTokens["area"]);
Arnis L.
2010-01-29 09:54:54