What is the partial class in C# What is the use of partial
class in C#?
Answer Posted / surya
Second partial class is the continution of first partial class.Its used to write the code in different classes,so that burden of coding is reduced.For all the classes the class name will be same,And it will be created the same object for all the classes.
Ex:
Partial class A
{
public information()
}
partial class A()
{
public details()
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is sqladapter c#?
What are the characteristics of c#?
What are sessions in c#?
What is a console file?
Why do canadians say zed?
What is a template class?
Write a syntax for writing a event delegate.
If c# destructors are so different to c++ destructors, why did ms use the same syntax?
Distinguish between finally and finalize blocks?
Explain how to implement an object pool in c#.net
What is the difference between public, static, and void?
Classes and structs can be declared as static, is this statement true or false?
What is the use of main method in c#?
Can partial class be inherited?
What is the difference between Object and class adapters?