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
Explain the difference between a sub and a function in c#.
How many bytes is an int c#?
What does xpath return?
What are the different types of assembly?
What is multiple interface in c#?
Explain how can you clean up objects holding resources from within the code?
What are custom attributes in c#?
What is the difference between list and ilist in c#?
Can you use all access modifiers for all types?
How do I format a string in c#?
What is list array in c#?
What is the difference between console and windows application?
What is a static in c#?
What is the difference between constants and read-only?
What is argument in c#?