Я создал статический класс примерно так:
public static class Routing {
public static RouteValueDictionary Index {
get {
return new RouteValueDictionary {
{ "controller", "Default" },
{ "action", "Index" }
};
}
}
}
, поэтому я могу использовать его так:
return RedirectToAction(Routing.Index);