Can I map an action\'s parameter to a different name?
I want to use reserved words as parameters for an action, such as:
search?q=someQuery&in=lo
You can use the '@' notation to make the name be interpreted literally rather than a reserved word in c#.
public ActionResult Test(string @for) { var something = @for; }