I've read some posts with some self implementations of this but I think now there should be some method in the ASP.NET MVC that should have this functionality.
I suppose there is some kind of method that can do what string.Format does:
string.Format("example {0}", 1);
but instead of using {0} can work with variables names just like the MVC routes. for example:
string.Format("example {id}", 1);
Is there such public method in ASP.NET MVC?
[Edit: Any idea how for example are action links rendered out of routes?]