30
System.MissingMethodException:方法未找到?
曾经在我的asp.net Webforms应用程序中工作的东西现在抛出此错误: System.MissingMethodException:找不到方法 该DoThis方法在同一类上,并且应该可以工作。 我有这样一个通用处理程序: public class MyHandler: IHttpHandler { public void Processrequest(HttpContext context) { // throws error now System.MissingMethodException: Method not found? this.DoThis(); } public void DoThis() { // } }
244
c#
asp.net
dll
nuget
httphandler