A
Adam
All,
This issue is still irritating me. I would like to know
conclusively if a class inheriting an interface can be
extended with methods not in the inherited interface. So,
if someone can answer the question or provide some
insight, please do!
However, I've got a production schedule to meet. In the
interest of time I came up with a work around, which I
want to share.
Since each (implementation) class has the core methods I
want plus a few extras. I've changed the object
declaration from IItem (interface object) to object
(generic object). This gives me the flexibility of
assigning any item to the object (as I enjoyed with the
IItem object), and using both the base and extended
methods of the object.
Regards,
Adam
This issue is still irritating me. I would like to know
conclusively if a class inheriting an interface can be
extended with methods not in the inherited interface. So,
if someone can answer the question or provide some
insight, please do!
However, I've got a production schedule to meet. In the
interest of time I came up with a work around, which I
want to share.
Since each (implementation) class has the core methods I
want plus a few extras. I've changed the object
declaration from IItem (interface object) to object
(generic object). This gives me the flexibility of
assigning any item to the object (as I enjoyed with the
IItem object), and using both the base and extended
methods of the object.
Regards,
Adam