I\'d like to have dashes separate words in my URLs. So instead of:
/MyController/MyAction
I\'d like:
/My-Controller/My-Act
You could write a custom route that derives from the Route class GetRouteData to strip dashes, but when you call the APIs to generate a URL, you'll have to remember to include the dashes for action name and controller name.
That shouldn't be too hard.