syntax for writing private method in a interface
Answers were Sorted based on User's Feedback
Answer / vanitha
An interface cannot have private methods. All the member
declarations inside interface are implicitly public.
Is This Answer Correct ? | 20 Yes | 2 No |
Answer / pankaj
we cnt write private methods in an interface.as we have to
inherit that method its by default on public scope
Is This Answer Correct ? | 12 Yes | 0 No |
Answer / anna
we can't have private methods in in interface.
by default all are public
Is This Answer Correct ? | 9 Yes | 0 No |
Answer / jayamala
By default interface is public.Interface is accessed by
another class it should be public.so we cant write it as a
private.
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / sudhir kunnure
we create interface for inherite to classes, and Private
methods can only access within class not inherited class.so
you cannot create Private methods in Interface.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / uma
By default all methods in the interface are not just
public !!!!! They are Public abstract.
Because methods of Interface will get override in the
Derived classes
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / manoj dhanik
we cannot change the access modifier of methods private inside interface....n all the methods of interface should be implement in derived class..so the methods should not private
Is This Answer Correct ? | 1 Yes | 1 No |
What are anonymous functions in c#?
Which is faster dictionary or hashtable?
What is the default value of datetime in c#?
What is console readkey in vb net?
Define acid rule of thumb for transactions in c#.
what is IDisposal interface
How many bits is int32?
Why generics are used?
What is lock statement in C#?
Can you pass value types by reference to a method?
There are a class A. Another class B derived from it. Now if I do A a = new B(); and B b = new B(); What will happen in both the statements. And what is the difference between these two statements.
What is anonymous methods in c#?