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
What are action filters?
What is viewbag?
I want to fetch data from datareader. i have three tables in datareader. i want to bind my two table with datagrid, then i want to fetch a value from my third table. do u have any idea pls help me. we use dr.nextresult() for multiple tables.
What you mean by routing in asp.net mvc?
What is the 'page life cycle' of an ASP.NET MVC?
My organization went through the approval process of supporting the .net framework 2.0 in production. Do we need to go through the same process all over again for the .net framework 3.0? Do I need to do any application compatibility testing for my .net framework 2.0 applications?
what do you mean by table-per-hierarchy?
what is csdl?
How we can add the CSS in ASP.Net MVC?
What is representational state transfer (rest) mean?
what is scalar property?
what is way of loading data in ef (entity framework)?
What are scaffold templates in mvc?
Is the following route definition a valid route definition? {controller}{action}/{id}
What is the need of Action Filters in ASP.Net MVC