Click Here to View Practical Example
1. Interface is simply defined by interface keyword.
2. Interface has no implementation it has only the signature. Interface have only abstract method.
3. Interface cannot have access modifier private, protected, protected internal.
4. Interface cannot have data field.
5. The class must implements all features of inherited interface.
6. A class implement more than one interface but only one abstract class inherit.
1. Interface is simply defined by interface keyword.
2. Interface has no implementation it has only the signature. Interface have only abstract method.
3. Interface cannot have access modifier private, protected, protected internal.
4. Interface cannot have data field.
5. The class must implements all features of inherited interface.
6. A class implement more than one interface but only one abstract class inherit.