I've included a dll file into my windows form project. 1. Is it possible to override a particular class entirely? 2. Is it possible to add a new method to a particular class in the dll file? 3. Is it possible to override a method in a class in the dll?
Alternatives I would prefer to avoid: I know I can use extension methods to create static new methods. I can also inherit from a particular class and then add new methods to the derived class.
What i'm trying to achieve: i have to create a project now and add it to a larger project as a dll file. but we've been told that we'll need to add more functionality to the original project next month. I'm trying to figure out the best way to go about this. the smaller project is based on mvc design.