Hello! I have recently joined this forum, so I donīt know if I am doing it correctly posting this thread here.
I am having problems with this:
I want develop an interface IB that extends an interface IA
Interface IA has a method :
void M(IC pIC );
and interface IB, has a method :
void M(ID pID);
Also happends that interface ID extends interface IC, so I want that interface's IB method M declaration overrides interface's IA method M declaration. Then when an Object implements interface IB, it will have to implement method "void M(ID pID);" but not the method "void M(IC pIC );".
My questions are:
This can be done?
If it can be done, how can I make it?
Thanks for helpping me, or for trying to help.