i am working with dynamic c# application that links all the classes into the main application from the Dll files that i create separately, in these files when i connect my dll f
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