answersLogoWhite

0

A partial class is a .NET feature that permits a class to be written across multiple declarations within an assembly. The most prominent usage of this concept is within ASP.net with respect to the declaration of web form pages.

As described by the definition, a portion of the class is written in the CS code behind. The other part of the class is created during compilation and then merged with the code-behind part to create the class in its entirety.

Another uses of partial classes is just to split a class across multiple files.

User Avatar

Wiki User

14y ago

What else can I help you with?