It is something like this.
Interface 1 inherits class1
class2 have method1, method2 and public method 3 but class2 inherits class1.
will my program look like this
Interface interface1
{
method1();
method2();
}
class1 :interface1
{
method1();
method2();
}
class2:class1
{
method1();
method2();
public method3();
}
thanks