What is the partial class in C# What is the use of partial
class in C#?
Answer Posted / 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 |
Post New Answer View All Answers
Which controls do not have events?
What is difference between private and protected in c#?
Is c sharp open source?
What is difference between singleordefault and firstordefault?
Describe a Struct ?
List down the access modifiers available in c#?
How do you encapsulate in c#?
Why data types are important?
What is array and arraylist?
Is datetime a value type in c#?
How do I create multifile assembly?
How to find whether the application is run from inside ide or not?
Why do we write system in c#?
What is .edmx file?
Does console.writeline() stop printing when it reaches a null character within a string?