Why can?t you specify the accessibility modifier for methods
inside the interface?

Answers were Sorted based on User's Feedback



Why can?t you specify the accessibility modifier for methods inside the interface?..

Answer / tsahi

Interfaces are designed to make sure a class which
implements them exposes a certain set of methods. Because
these methods are exposed, they must be public. therefore,
there is no point in implementing a method from an interface
which will be anything other than public. So all methods in
an interface are always public.

Is This Answer Correct ?    5 Yes 0 No

Why can?t you specify the accessibility modifier for methods inside the interface?..

Answer / umesh

They all must be public. Therefore, to prevent you from
getting the false impression that you have any freedom of
choice, you are not allowed to specify any accessibility,
it?s public by default.

Is This Answer Correct ?    3 Yes 1 No

Why can?t you specify the accessibility modifier for methods inside the interface?..

Answer / lakshmi

Methods that implement an interface must be declared public. The reason for this is that methods are implicitly public within an interface, so their implementation must also public. Also the return type and signature of the implementing method must match exactly the return type and signature specified in the interface definition.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Is xamarin free?

0 Answers  


Where are value types stored in c#?

0 Answers  


What are the 2 types of data types available in c#?

0 Answers  


What do you mean by synchronous and asynchronous operations?

0 Answers  


How you will create satellite assemblies?

0 Answers  






Can abstract class have private constructor c#?

0 Answers  


What is yield keyword?

0 Answers  


Is c# an array?

0 Answers  


If a.equals(b) is true then a.gethashcode & b.gethashcode must always return same hash code.

0 Answers  


Why it's said that writing into .NET Application Configuration Files is a Bad Idea?

0 Answers   DELL,


What is the default scope of a class in c#?

0 Answers  


What is an ienumerable in c#?

0 Answers  


Categories