Interview Question
Qus: What are the access modifiers for the items used in C# interface?
Interface members are public by default. You can also use internal if you want to make your libraries to be used by other projects.
Answers (2)