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


Please Help Members By Posting Answers For Below Questions

Can we inherit a class with private constructor in c#?

807


From which base class do all Web Forms inherit from?

713


What is difference between asp net and c# net?

676


What is using keyword in C#?

786


What is lazy loading entity framework?

701


how dot net compiled code will become platform independent?

731


What is difference between array and arraylist c#?

672


What is class in oops with example in c#?

677


How can I develop an application that automatically updates itself from the web?

669


What are concrete classes?

662


What is the difference between Static, Const and read only?

823


What are winforms in c#?

674


Explain About Iunknown interface Queue

722


What is default parameter in c#?

726


Can abstract class have constructor?

673