Skip to content

Instantly share code, notes, and snippets.

@guntidheerajkumar
Created November 6, 2015 06:07
Show Gist options
  • Save guntidheerajkumar/6b44c48bb3a5679a980b to your computer and use it in GitHub Desktop.
Save guntidheerajkumar/6b44c48bb3a5679a980b to your computer and use it in GitHub Desktop.
private string GetRouteData(RouteData routeData)
{
var controller = routeData.Values["controller"];
var action = routeData.Values["action"];
return String.Format("Controller:{0}; Action:{1};", controller, action);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment