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 do u mean by delegation?
What is default constructor in c#?
I have 3 overloaded constructors in my class. In order to avoid making instance of the class do I need to make all constructors to private?
What does int parse do in c#?
When a switch is said to be congested?
Can hashtable have duplicate keys?
Where do we use static class in c#?
What is wpf c#?
Why do we need singleton pattern in c#?
What is expression tree in c#?
The int maps to which C# keyword in .NET type?
What is the default value of date?
What is a Managed Code??
What are properties in c#. Explain with an example?
Is it possible to inherit multiple interfaces?