Interview Preparation mode beta
Funny Facebook Status Funny Facebook Status
Enter your email address

What is partial classess in .net?

Nice?Vote!

1 Answer

Nice?Vote!
When there is a need to keep the business logic separate from the User Interface or when there is some class which is big enough to have multiple number of developers implement the methods in it, the class can be separated and written in different files as partial class.

The keyword partial must appear in each class.

//syntax for C#
Public partial class MyPartialClass1
{
         //code
}

// this code could be in file1

Public partial class MyPartialClass1
{
         //code
}
// this code could be in file2
answered 1 year ago by KrishnaMachiraju (7,980 points)

Related questions