1. Create interFace
interface ISuper
{
int GetSuper();
}
Classes can inherit multiple interfaces, or can only inherit a single abstract class.
Implementation in inherited cl
1. Create interFace
interface ISuper
{
int GetSuper();
}
Classes can inherit multiple interfaces, or can only inherit a single abstract class.
Implementation in inherited cl