what are partial classes?
Answer Posted / sunny setia
The purpose of partial classes is to allow a class's
definition to span across multiple files. It is especially
useful for:
Allowing multiple developers to work on a single class at
the same time without the need for later merging files in
source control.
Allowing a separation between the class interface and the
implementation-related definitions
Easing the writing of code generators, such as visual designers.
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
How can I tell what .net framework is installed?
Explain the tools used for unit testing in ASP.Net MVC
Explain Keep method in Tempdata in ASP.Net MVC?
What is net framework 3.0 ?
Is mvc 4 supporting windows azure sdk (software development kit) ?
How to use multiple submit buttons in asp.net mvc?
Can you use Razor code in Javascript in ASP.Net MVC?
What is partialview in asp.net mvc?
Which are the important namespaces used in mvc?
what is code first approach?
What are Validation Annotations?
What is objectcontext? : Entity framework
Why is the .net framework 3.0 a major version number of the .net framework if it uses the .net framework 2.0 runtime and compiler?
what do you mean by navigation property?
If I have multiple filters implemented, what is the order in which these filters get executed?