...

/

Interface Implementation and Inheritance

Interface Implementation and Inheritance

Explore interfaces in the context of inheritance.

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 ...