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
What is a static class in c#?
Can you describe iuknown interface in short?
What is args c#?
What do you mean by generic class in c#?
What is check/uncheck?
How do I type a whitespace character?
What is lazy t?
Why is c# good for games?
Can we instantiate abstract class in c#?
What is icomparer in c#?
Can we change static value in c#?
What is join in c#?
What are strong name assemblies?
Distinguish between continue and break statement?
What is jit (just in time)?