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
Is vs as c#?
What is the difference between internal and protected in c#?
Can mvc be used for desktop applications?
How to use exception handling in stored procedure?
how to stored and retrive video in Sql server using asp.net c#......?
Explain different properties of object oriented systems.
What is c# commonly used for?
How many types of interface are there in c#?
How to override a function in c#?
Explain the Different types of configuration files in .net?
Define multicast delegate? How it be used?
What benefit do you get from using a primary interop assembly (pia)?
what is a destructor?
Is c# and c same?
How do you name a variable in c#?