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

What is default value of bool in c#?

520


How does return work in c#?

504


Tell me the difference between value passing and address passing?

624


In which way you can convert a value-type to a reference-type?

532


Does c# support properties of array types?

510






What is ienumerator c#?

469


How many types of constructors are there?

508


Is c# front end or back end?

509


What is console programming language?

479


How a two-dimensional array declared in C#?

565


What is call back method?

514


Why are c# strings immutable?

497


how to implement a web service in .net

468


Why does dllimport not work for me?

569


What is a race condition?

487