Partial class are new feature in 2.0 Framework where single class is split among N-number of files,this is usefull when more than one developer wants to work on a same class,through class is split into N-number of files only one constructor will exist among all class files.When CLR complies the partial class after seeing Partial keyword CLR checks for class with same name and combines all partial class and compile it.
Example for partial class are all ASPX pages