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

Is hashset serializable c#?

0 Answers  


What is a callback c#?

0 Answers  


What is type cast in C#?

0 Answers   TryTechnicals Pvt Ltd,


What is inumerable?

0 Answers  


In c#, what will happen if you do not explicitly provide a constructor for a class?

0 Answers  






what happens if you inherit multiple interfaces and they have conflicting method names?

0 Answers   Siebel Systems,


Is datetime value type c#?

0 Answers  


What is a private constructor? where will you use it?

6 Answers   Fulcrum Logic,


Can arraylist store different data types in c#?

0 Answers  


What is a dimensional array?

0 Answers  


What are the types of serialization?

0 Answers  


How does inheritance work in c#?

0 Answers  


Categories