From www.asp.net/mvc/overview/getting-started/introduction/adding-a-controller
public string Welcome(string name, int numTimes = 1) { return HttpUtility.HtmlEncode("Hello " + name + ", NumTimes is: " + numTimes); }