C# Sharp: Partial Classes

Posted by dcolumbus on Stack Overflow See other posts from Stack Overflow or by dcolumbus
Published on 2011-01-04T20:49:42Z Indexed on 2011/01/04 20:54 UTC
Read the original article Hit count: 424

Filed under:
|

This is quick confirmation question:

In order to make partial classes work, I initially thought that there would be a main Class public class ManageDates and then you would create partial classes like public partial class ManageDates to extend the ManageDates class.

But from some experiementing, I've come to find out that if you're going to use partial classes, each individual class must be declared public partial class [ClassName] ...

Am I correct in this conclusion?

© Stack Overflow or respective owner

Related posts about c#

Related posts about partial-classes