What are the access-specifiers available in c#?
Answer Posted / rajendra
In C# .net the access specifiers are:
1.private
2.Internal
3.protected
4.protected Internal
5.Public
In VB.net the access specifiers are:
1.Private
2.Friend
3.Protected
4.Protected Friend
5.Public
| Is This Answer Correct ? | 8 Yes | 5 No |
Post New Answer View All Answers
what is generics? can u explain 5 to 6 examples on generics that covers class,method,structure,list,delegates?
What method is used to sort the elements of the array in descending order?
What is action c#?
What are delegates?
What is an assembly in dotnet?
In dynamic link library, which api is used for load library?
What is the purpose of namespace?
For read-only operation which property you have to designated?
Can you call from an inherited constructor to a specific base constructor if both base class and an inheriting class has a number of overloaded constructors?
What is session c#?
What is asp net in c#?
Explain the difference between abstract class and interface in .net?
What is cookies c#?
How the versioning applies to Assemblies or can you explain version numbers?
what is scope of a protected internal member variable of a c# class