Created
November 6, 2015 06:07
-
-
Save guntidheerajkumar/6b44c48bb3a5679a980b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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