Usuń lub zastąp istniejące trasy w tabeli tras

Mam aplikację ASP.NET MVC 2.0 Preview 1 i zacząłem tworzyć niektóre obszary, które zawierają własne trasy.

Chcę mieć sposób na zastąpienie tych tras w głównym projekcie. Oczywiście nie mogę dodać nowej trasy o tej samej nazwie. Widzę RouteTable.Routes.Remove (element RouteBase), ale nie wiem, jak go użyć.

//Need to remove "PostIndex" before adding it again
routes.MapAreaRoute(
                "OurAreaNameSpace",
                "PostIndex",
                "post/index/{currentPage}",
                new { controller = "Post", action = "Index", currentPage = "" },
                new string[] { "OurAreaNameSpace.Controllers" }
            );

questionAnswers(1)

yourAnswerToTheQuestion