Why can?t you specify the accessibility modifier for
methods inside the interface?
Answer Posted / karans
All members of an interface is marked as public because :
1) If Private :- The members ca not be implemented into
child class (as private members are derived into child
class).
2). If Protected :- The members can not be accessed by
instance of the class implementing members of that
interface (as protected members become private into
inherited class) even the members will not be inherited
into other child classes of class implementing interface.
c). If Public :- The members can be implemented into
child classes and can be accessed by instances of that
class as well as can be inherited into child class of that
class.
So All the members of Interface are bydefault considered
as PUBLIC.
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
Explain how to use an extender provider in the project.
Can list contain duplicates c#?
Explain the working of serialization?
What is escape sequence in c#?
What is a class in unity?
Why do we use dataset in c#?
Is vs as c#?
what are the differences between a class and structure
What is virtual in c#?
What is a template class?
What is the purpose of dependency injection?
What is wcf c#?
Why do we use partial class in c#?
what is inheritance and an example in vb.net and c# of when you might use it?
Is dictionary a collection?