3
Reply

Explain class inherited two interfaces which contains same method name declaration. How it's execution works with derived normal class

    one should do explicit interface conversion inorder to get the implimentation accordingly.

    A single implementation will do things. Both of the interface think that implementation is for theirs method

    interface i { void m1() } class a : i { public void I. m1() {} }