Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

When would you use generics in your code c#?

975


What is the concept of strong names?

1030


Is std :: string null terminated?

964


Explain copy constructor?

1195


In a single .NET DLL how many classes it contains?

981


What do u mean by delegation?

1007


What is primitive types in c#?

931


Why do I get a "cs5001: does not have an entry point defined" error when compiling?

1042


What is a scope in c#?

946


How to declare a property in a class?

1051


What are extender provider components?

949


Why we use get set property in c#?

989


What are most desktop applications written in?

1047


What is toint32 c#?

1094


How to assign Null value to Var?

1036