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

Describe two uses of the “using” statement during the operation of c#?

553


What the different phase/steps of acquiring a proxy object in webservice?

474


How to declares a two-dimensional array in C#?

576


What is assembly and dll in c#?

470


Define a partial class?

506






Why we use get set in c#?

504


What is the delegates in c#?

514


What is jit (just in time)?

558


What is the meaning of extention?

486


What is difference between field and property in c#?

447


Is as operator in c#?

473


Explain the OOPS concept in C#?

583


Can you inherit from a sealed class?

497


Can abstract class be sealed?

481


What is wrong with the sample program below?

535