Interface Implementation and Inheritance
Explore interfaces in the context of inheritance.
We'll cover the following...
Base class methods
Suppose we have a MultimediaFile
class and we want to implement the IDownloadable
interface that has a method:
interface IDownloadable
{
void Download();
}
If ...