architecture - OO: Can an interface implement another interface? -
i know language-specific, possible in oo-languages interfaces implement other interfaces?
in c# can do:
interface yourinterface: idisposable { /// methods } and class wich implements yourinterface shall implement idisposable's method.
of course, valid:
yourinterface implementation = new implementation(); idiposable disposable = implementation;
Comments
Post a Comment