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

How to raise an selection changed event associated with listbox in datagridview control with a sample example?Here the listbox is a child control associated with datagridview control.

3 Answers  


Difference between value and reference type. What are value types and reference types?

0 Answers  


Is std :: string null terminated?

0 Answers  


What is action in c# 3.5?

0 Answers  


Is c# a keyword?

0 Answers  


What is windows form in c#?

0 Answers  


Example of value type and refarnce type

4 Answers   Synechron,


What are jagged arrays used for?

0 Answers  


why we can't create an object for a static class?? what is the reason behind this?

4 Answers   HCL,


Are c and c# the same thing?

0 Answers  


Why is it efficient to use System.string under System.Text.StringBuilder ?

0 Answers   Siebel,


Using system; class main { public static void Main() { int a = 1; for (int i = 0; i < 10; i++) { int j = a * 5; Console.WriteLine(a + "*5=" + j); a++; } Console.ReadLine(); } }

1 Answers  


Categories