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#?

Answers were Sorted based on User's Feedback



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

Answer / 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

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

Answer / suresh

partial classes allow implementation across more than one
source file...........

Is This Answer Correct ?    28 Yes 2 No

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

Answer / naresh

Suppose we have a class with hunderads of functions.than it
is so time taken and also difficult to write all code by
one.so to avoid this,we implement this by more than one
devloper at the same time by using same class name followed
by partial keyword....

Is This Answer Correct ?    17 Yes 2 No

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

Answer / 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

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

Answer / rajeev sharma

When we are working in our pages and supppose we need to
make relation for access some thing from the class.Partial
class is best one.

Is This Answer Correct ?    0 Yes 1 No

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

Answer / surya

Second partial class is the continution of first partial class.Its used to write the code in different classes,so that burden of coding is reduced.For all the classes the class name will be same,And it will be created the same object for all the classes.
Ex:

Partial class A
{
public information()
}
partial class A()
{
public details()
}

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More C Sharp Interview Questions

What is the name of c# compiler?

0 Answers  


Is as operator in c#?

0 Answers  


Describe the difference between inline and code behind - which is best?

0 Answers   Siebel,


What is an escape sequence? Name some string escape sequences in c#.

0 Answers  


What is value c#?

0 Answers  


Why interface is required?

0 Answers  


Difference between ByVal and ByRef?

5 Answers   Microsoft,


What are Namespaces?

1 Answers  


What is the difference between abstract class and interface in c#?

0 Answers  


What debugging tools come with the .NET SDK? CorDBG

1 Answers  


What is the difference between var and dynamic types in c# 4.0?

0 Answers  


Can a child class call the constructor of a base class?

0 Answers  


Categories