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
What is parse method in c#?
Does c# support const methods, properties, or events?
What are the different types of assemblies available and their purpose?
What is dynamic object in c#?
What is the use of ispostback in c#?
In object oriented programming, how would you describe encapsulation in c#?
Why we use oops in c#?
How can i Spawn a Thread
Can we have two main methods in c#?
What language is arduino?
What is a ienumerator?
What debugging tools come with the .NET ssSDK?
What is default access modifier for class in c#?
How do I create a multi language, multi file assembly?
1. Describe page life cycle?