What are the access-specifiers available in c#?

Answer Posted / anas

An access specifier determines how other parts of a program
can access a class member.

Member access is controled by five access specifiers:

1. public,
2. private,
3. protected,
4. internal.
5. protected internal

1. public member can be accessed by any other code in
your program.
2. Main() is declared as public because it will be called
by code outside of its class (the operating system).
3. private member can be accessed only by other members
of its class.
4. A protected member is public within a class hierarchy,
but private outside that hierarchy.
5. A protected member is created by using the protected
access modifier.
6. The internal modifier declares that a member is known
throughout all files in an assembly, but unknown outside
that assembly.
7. The protected internal access level can be given only
to class members.
8. A member declared with protected internal access is
accessible within its own assembly or to derived types.

Is This Answer Correct ?    9 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to use exception handling in stored procedure?

546


What is the default value of boolean variable?

458


What is difference between method and function in c#?

472


What do u meant by "SBI" of an object?

540


How does return work in c#?

511






What is the difference between and xml documentation tag?

528


What is hash c#?

500


Define satellite Assembly?

558


Where do we use static class in c#?

496


How do I unload an assembly?

523


What are extender provider components?

475


Are constructors inherited c#?

515


Explain how many types of exception handlers are there in .net?

478


What are callback methods in c#?

506


What is lazy loading entity framework?

499