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
How do you declare a method in c#?
What is the use of table aliases?
How do you create dlls in .NET
What is the advantage of static class in c#?
Is multilevel inheritance possible in c#?
Is cli same as the clr?
How can encapsulation be achieved?
What is a di class?
Define a manifest in .net?
What is the use of constructor in c# with example?
What is the use of console readkey ()?
What is gui in c#?
Explain the differences between static, void and public in c#?
Can hashtable have duplicate keys?
What is the difference between field and property in c#?