what are partial classes and their use?
Answer Posted / arunajyothi.m
“partial” keyword can be used to split a single class,
interface, or struct into multiple, separate files in
ASP.NET (using C# as the language). This permits multiple
developers to works on these files, which can later be
treated as a single unit by the compiler at the time of
compilation and compiled into MSIL code.
1.Partial classes can improve code readability and
maintainability by providing a powerful way to extend the
behavior of a class and attach functionality to it.
2.The partial modifier can only appear immediately before
the keywords class, struct, or interface.
3.Nested partial types are allowed in partial-type
definitions.
4.Using partial classes helps to split your class
definition into multiple physical files.
5.Note that the partial keyword applies to classes,
structs, and interfaces, but not enums
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
What are the features of asp net?
What are the differences between the response.write() and response.output.write()?
What is asynchronous call?
How to use ipostback?
Explain login control and form authentication.
Define satellite assemblies.
What is difference between asp.net and asp.net mvc? : Asp.Net MVC
What are the Types of session management in ASP.NET
Mention the namespace that is used to include .net data provider for sql server in .net code?
What’s the use of “GLOBAL.ASAX” file?
What is session start?
What is the difference between web.config and machine.config in ASP.NET?
What is the purpose of master page?
What are sessions used for?
How is session id generated?