What is the partial class in C# What is the use of partial
class in C#?
Answer Posted / 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 |
Post New Answer View All Answers
What is Reflection in .NET? Namespace? How will you load an assembly which is not referenced by current assembly?
Do events have return type c#?
What is yield c#?
Is c# and c same?
Please explain value types and reference types used in c#?
What is a hashset c#?
What are some of the commonly used commands in sqlcommand?
Can list contain duplicates c#?
How does split work in c#?
What do you mean by for each loop?
Do unused Namespaces in c# affect run-time performance?
Is there an equivalent of exit() for quitting a c# .net application?
What is the root element of an xml file?
Can we declare class as protected?
What is the difference between static class and singleton class in c#?