Can I use partial class on different assembly?
Partial class
Collapse
This topic is closed.
X
X
-
Tommaso CaldarolaTags: None -
Jon Skeet [C# MVP]
Re: Partial class
Tommaso Caldarola wrote:[color=blue]
> Can I use partial class on different assembly?[/color]
No. A partial class is just a way of splitting one type over more than
one source file. The result is a perfectly normal type, i.e. one of the
parts of an assembly. The runtime doesn't need to know about partial
classes.
Jon
-
Chris FulstowComment
Comment