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

What does void do in unity?

524


What is field in c#?

458


Why is lazy loading?

494


Overloaded constructor will call default constructor internally?

561


Is unboxing an implicit conversion?

532






Explain what is an interface in c#?

519


What is addressof operator?

516


What does break do in loop?

489


Is it possible to inherit multiple interfaces?

539


What is a Command Object in C#?

549


Explain the difference between proc. Sent by val and by sub?

474


Is a dll an assembly?

474


what is main function of alternate teamplate of datalist?

1636


What is difference between assembly and dll?

477


What is overloading in c#?

475