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 …
245
c#
asp.net
dll
nuget
httphandler