예제 #1
0
파일: Router.cs 프로젝트: Niels-R/mvc
        public void AddRoute(Route route)
        {
            _routes.Add(route);

            _routeCache.Clear();
        }
예제 #2
0
파일: Router.cs 프로젝트: Niels-R/mvc
        public void InsertRoute(Route route)
        {
            _routes.Insert(0, route);

            _routeCache.Clear();
        }