HttpContext.Current.RewritePath(Request.ApplicationPath);
IHttpHandler httpHandler = new MvcHttpHandler();
httpHandler.ProcessRequest(HttpContext.Current);
我正在使用性能测量工具,我发现上面的代码使用了大量的 CPU,有人知道如何优化它吗?提前感谢您的建议!
HttpContext.Current.RewritePath(Request.ApplicationPath);
IHttpHandler httpHandler = new MvcHttpHandler();
httpHandler.ProcessRequest(HttpContext.Current);
我正在使用性能测量工具,我发现上面的代码使用了大量的 CPU,有人知道如何优化它吗?提前感谢您的建议!