C Sharp (C#) - Interfaces
You have two interfaces with the same method name:
How do you implement both methods explicitly to avoid conflict?
interface IA { void Execute(); }
interface IB { void Execute(); }
class C : IA, IB { ??? }How do you implement both methods explicitly to avoid conflict?
