What is the partial class in C# What is the use of partial
class in C#?

Answer Posted / poonam

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 ?    9 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When was c# created?

532


What is asp net c#?

498


What do you mean by generic class in c#?

496


What are actions in c#?

484


How do I run managed code in a process?

508






If a child class instance is created, which class constructor is called first - base class or child class?

507


Can namespace contain the private class?

497


Can a dictionary have duplicate keys c#?

482


Why do we need properties in c#?

495


What does mean c#?

532


Why do we use parameters in c#?

504


Can we maintain state in webservice?

504


If I return out of a try/finally in c#, does the code in the finally-clause run?

554


Explain About multi level and multiple inheritance how to achieve in .net

577


Why do you call it a process? What’s different between process and application in .net, not common computer usage, terminology?

537