Create | Hello Guest |
interface IMyInterface{void fun1();void fun2();}class MyClass: IMyInterface{private int i;void IMyInterface.fun1(){// Some code}}
interface IPerson{String FirstName{get;set;}String LastName{get;set;}void Print();void Stock();int Fun();}
interface IPerson{String FirstName{get;set;}}