I have and interface with 5 mthods.
I want to add a 6th method, but I would like to avoid having to manually add the method to each claas I have that uses the interface.
Can I either:
- Tell interface the class does NOT have to be implemented. OR
- Have VS add empty method to each derived class automatically.
Is either of the above possible?