C# User Defined Exception handling for Erroe from Dll get Exception was unhandled by user code

和自甴很熟 提交于 2019-12-02 14:24:36

i think i get the answer here, when i link my dll into the application by reference and then using it as a object inside of my application by using directive it works fine and lets me to use throw exception to the application's throw catch statement, but when it added into the application by dynamically it expect me to handle my exceptions inside the dll and solve what ever the problems, it wont allow me to throw exceptions by using throw new exception("err") to the application

Evan a there is no err handling for that throw new exception is okay, but it wont allow the throw in catch block

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!