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
When would you use generics in your code c#?
What is the concept of strong names?
Is std :: string null terminated?
Explain copy constructor?
In a single .NET DLL how many classes it contains?
What do u mean by delegation?
What is primitive types in c#?
Why do I get a "cs5001: does not have an entry point defined" error when compiling?
What is a scope in c#?
How to declare a property in a class?
What are extender provider components?
Why we use get set property in c#?
What are most desktop applications written in?
What is toint32 c#?
How to assign Null value to Var?