What are the access-specifiers available in c#?
Answers were Sorted based on User's Feedback
Answer / ranganathkini
The access-specifiers available in C# are:
1. public - The member can be accessed from anywhere
2. internal - The member can only be accessed from type it
originates from or other types in the same assembly
3. protected - The member can only be accessed from the type
it originates from or from detrieved types of the
originating type
4. protected internal - implies protected OR internal ( not
protected AND internal )
5. private - The member is only accessible by other members
within the type it originates from.
Is This Answer Correct ? | 238 Yes | 33 No |
Answer / mrinalini
1.public
2.private
3.protected
4.internal
5.protected internal
Is This Answer Correct ? | 130 Yes | 21 No |
Answer / anupam dixit
1. Public: Any member declared public can be accessed from
outside the class.
2. Private: it allows a class to hide its member variables
and member functions from other class objects and function.
Therefore, the private member of a class is not visible
outside a class. if a member is declared private, only the
functions of that class access the member.
3. Protected: This also allows a class to hide its member
var. and member func. from other class objects and
function, except the child class. it becomes important
while implementing inheritance.
4. Internal: Internal member can be expose to other
function and objects. it can be accessed from any class or
method defined within the application in which the member
is defined
5. Protected Internal: it's similar to Protected access
specifier, it also allows a class to hide its member
variables and member function to be accessed from other
class objects and function, excepts child class, within the
application. used while implementing inheritance.
Is This Answer Correct ? | 126 Yes | 23 No |
Answer / vaibhav ichake
public
private
protected
interanl
protected internal
Is This Answer Correct ? | 51 Yes | 18 No |
Answer / vijay
public,private,protected,internal,protectedinternal
Is This Answer Correct ? | 53 Yes | 22 No |
Answer / shakira
Public,private,protected,internal,protected internal.
Is This Answer Correct ? | 42 Yes | 14 No |
Answer / kishor niit ottapalam
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 ? | 31 Yes | 5 No |
Answer / abhi
What is default accesssecifier for method in c#?
Is This Answer Correct ? | 56 Yes | 36 No |
Answer / rashmi
1.public
2.private
3.protected
4.internal
5.protected internal
Is This Answer Correct ? | 22 Yes | 6 No |
Answer / md eqbal ansari
C# provide five access specifiers , they are as follows :
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 member can be accessed as a Internal
member within the assembly and as a protected member
outside the assembly.
Is This Answer Correct ? | 18 Yes | 5 No |
What are properties in C#?
Where do you add an event handler ?
Are private class-level variables inherited?
5 Answers HCL, Siebel Systems, Visual Soft,
How does dictionary work in c#?
Can I call a virtual method from a constructor/destructor?
What are extender provider components? Explain how to use an extender provider in the project.
Can scriptable objects have methods?
Explain how do I convert a string to an int in c#?
What is the value which is accepted by all data types ?
What is difference between Enum and Struct?
Suppose in a scenario if we want to display information only until 4.00 p.m and after that means after 4.00 p.m if any one tries to access the information it should give error mesage. Then how will you write a delegate for this ? Give coding.
1 Answers HP, nTech Solutions, Primetech Software, PS,
what is virtual method in c#?