Answer Posted / kirti
Access modifiers are keywords used to specify the declared accessibility of a member or a type. This section introduces the four access modifiers:
� Public - Access is not restricted.
� Protected - Access is limited to the containing class or types derived from the containing class.
� Internal - Access is limited to the current assembly.
� Protected inertnal - Access is limited to the current assembly or types derived � from the containing class.
� Private - Access is limited to the containing type.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How would you deploy your old applications with .net framework 4.0? Are the old applications compatible?
Explain the methods used to render the views in mvc?
In which assembly is the mvc framework defined?
What is the .net framework and how does it work?
Can I uninstall microsoft .net framework?
What is entity sql? : Entity framework
What is the use of viewmodel in mvc?
how can you tell ef to have a different table or column name than that defined for the class?
Describe the gac in the .net framework.
explain how you can load related entities in ef (entity framework)?
What is mapping in entity framework? : Entity framework
Can we add constraints to the route? If yes, explain how we can do it?
Why to use “{resource}.axd/{*pathinfo}” in routing in mvc?
What is the difference between renderaction and renderpartial?
What are Scaffold templates in ASP.Net MVC?