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
Describe the difference between inline and code behind - which is best?
Can You Prevent Your Class From Being Inherited By Another Class?
Is int a class in c#?
what is the difference between the debug class and trace class?
What is a service layer c#?
What exactly happens when we debug and build the program?
how to prevent a class from being inherited in c#.net?
What is integer c#?
What are classes in c#?
What is ildasm and obfuscator in net?
What is default class in c#?
Can main method be final?
What are the types of serialization?
What are extension methods and where can we use them?
What kind of the information stored inside the assembly?