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 a static class in c#?
What is the difference between IEnumerator and IEnumerable?
What do u mean by delegation?
What is the difference between CONST and READONLY?
Are enums static c#?
What are scriptable objects?
what is the index value of the first element in an array?
What are constants in c#?
Does c# support multiple class inheritance?
What is call back method?
How do you prevent a class from being inherited in c#?
How to Show Message box in Metro Style App?
What is a framework in c#?
Can constructor have return type c#?
Why do we need collections in c#?