What is the partial class in C# What is the use of partial
class in C#?
Answers were Sorted based on User's Feedback
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 |
Answer / suresh
partial classes allow implementation across more than one
source file...........
Is This Answer Correct ? | 28 Yes | 2 No |
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 |
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 |
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 |
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 |
How can you prevent escaping on backslashes in C# with string definitions?
Why multiple inheritance is not possible in c#
What is c# used for in the industry?
What basic steps are needed to display a simple report in crystal?
How to put assembly in gac?
Can we call server-side code (c# or vb.net code) from javascript?
What is dictionary and hashtable in c#?
Is null or empty in c#?
Which control cannot be placed in mdi?
What is the difference between CreateObject() and GetObject()?
Why is xml called extensible?
What are the different types of constructors in c#?