Provide implementation for an abstract method from an interface
Is it possible to override a method implementation by deriving from an interface which gives a default implementation for that method? If not, how should I restructure my code to avoid explicit method calls to the interface’s implementation?
C# – Provide implementation for an abstract method from an interface
Is it possible to override a method implementation by deriving from an interface which gives a default implementation for that method? If not, how should I restructure my code to avoid explicit method calls to the interface’s implementation?