Answer: Interface has public modifier by default but you are not allowed to specify any access modifier in interface.
Example:
interface IExample{
public void funExample(); //Error: The modifier 'public' is not valid for this item.
string fun2(string strParam1, string strParam2);//no error
}
Found interesting? Add this to: