Why can?t you specify the accessibility modifier for methods
inside the interface?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
Can class be protected in c#?
How do I unload an application domain?
What is difference between asp net and c# net?
i have a string aabccefsdss.how can i get the string abcefsd. or write the fallowing string with only character occurrence of once .
Describe two uses of the “using” statement during the operation of c#?
Explain Direct CAST vs CType ?
List down the different ide’s provided by microsoft for c# development.
What is desktop GUI application?
What is a dbml?
What does addressof operator do in background ?
What is a console application in c#?
What is variable in c#?