What is the partial class in C# What is the use of partial
class in C#?
Answer Posted / asha
Partial class splits the class or struct or interface to
work for diffrent users siultaneously. It is desirable when
working on large projects.
Eg.
Public partial class students()
{
public void dostudy()
{
}
}
Public partial class students()
{
public void writeexam()
{
}
}
Is This Answer Correct ? | 32 Yes | 3 No |
Post New Answer View All Answers
Can we inherit a class with private constructor in c#?
From which base class do all Web Forms inherit from?
What is difference between asp net and c# net?
What is using keyword in C#?
What is lazy loading entity framework?
how dot net compiled code will become platform independent?
What is difference between array and arraylist c#?
What is class in oops with example in c#?
How can I develop an application that automatically updates itself from the web?
What are concrete classes?
What is the difference between Static, Const and read only?
What are winforms in c#?
Explain About Iunknown interface Queue
What is default parameter in c#?
Can abstract class have constructor?