What is partial class?

 Posted by Poster on 11/13/2008 | Category: C# Interview questions | Views: 12922
Answer:

Partial class is a new functionality added in since .NET Framework 2.0 version. It allows to split us to split the definition of once class, struct, interface into multiple source files. Each source file contains a section of definition, and all parts are combined when the application is compiled.

For more detail see http://msdn.microsoft.com/en-us/library/wa80x488(VS.80).aspx


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response