- An interface is just a contract for use to the outside world and hence we don’t specify any access specifiers to the members of an interface.
- The members are all public by default.
interface IDope {
int DoProp {get;set;}
int DoAdd(int a, int b);
}