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 is difference between abstraction and encapsulation in c#?
Major difference between Basic httpbinding and WShttpbinding?
What is difference between property and variable in c#?
What is difference between write and writeline in c#?
What is the difference between add and addrange in c#?
Can an int be negative c#?
Explain the advantage of using system.text.stringbuilder over system.string?
What is difference between Trace and Debug
How can we sort the elements of the array in descending order?
Who benefits from ajax?
code for arranging given number in possible permutation ways ex:123,321,312,132,231,213.
What is interpolation in programming?
What is string [] args in c#?
Which of these string definitions will prevent escaping on backslashes in c#?
What is the difference between int and int in c#?