- Can an interface have events?
- Yes, an Interface can have methods, properties, indexers & events.
- Can I use the public keyword with interface members?
- No, all the members of the interface are public by default but we cannot use any access modifiers explicitly with the interface members.
- Can an interface have constructors?
- No, Interfaces cannot contain constructors.
- Can I use the static keyword with the interface method?
- No, we cannot use static and public modifiers with the interface method.