Answer Posted / kanan
public,
private ,
protected ,
internal and
protected internal
public :
public is the most common access specifier in C# . It can be
access from anywhere, that means there is no restriction on
accessibility. The scope of the accessibility is inside
class as well as outside. The type or member can be accessed
by any other code in the same assembly or another assembly
that references it.
private :
The scope of the accessibility is limited only inside the
classes or struct in which they are declared. The private
members cannot be accessed outside the class and it is the
least permissive access level.
protected :
The scope of accessibility is limited within the class or
struct and the class derived (Inherited )from this class.
internal :
The internal access modifiers can access within the program
that contain its declarations and also access within the
same assembly level but not from another assembly.
protected internal :
Protected internal is the same access levels of both
protected and internal. It can access anywhere in the same
assembly and in the same class also the classes inherited
from the same class .
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
Are polymorphisms mutations?
What is encapsulation in oops?
i got a backdoor offer in process global,Bangalore..Can i work with it?
There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.
Can we override main method?
What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?
Can main method override?
How do you achieve runtime polymorphism?
What is the real time example of inheritance?
Is this job good for future? can do this job post grduate student?
What is object in oop?
State what is encapsulation and friend function?
How is class defined?
What is abstraction and encapsulation?
How can you overcome the diamond problem in inheritance?