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

Explain the types of assemblies in .net?

0 Answers  


Difference between directcast and ctype.

0 Answers  


What is uint64?

0 Answers  


What is system predicate?

0 Answers  


Explain the difference between proc. Sent by val and by sub?

0 Answers  






How objects are stored in memory?

0 Answers  


What is data binding c#?

0 Answers  


How to use exception handling in stored procedure?

0 Answers   Wipro,


Difference between type constructor and instance constructor? What is static constructor, when it will be fired? And what is its use?

0 Answers  


How can I create image pieces/sub image?

0 Answers  


Can a constructor be static in c#?

0 Answers  


Can abstract classes be final?

0 Answers  


Categories