Alan Cameron Wills' WebLogDomain-specific modeling, languages, software factories, ...partial classes- November 3, 2005 We use partial classes a lot in the DSL Tools. We need them to help compose code that's generated from different places, and generated with handwritten code. If you're not familiar with it, a partial class definition is just a set of methods, properties etc that gets combined with another partial definition at link time, to form a complete class. The parts can be in different source files, which makes it easier to manage them separately: different generators can output to different files. So in.http://blogs.msdn.com/alan_cameron_wills/archive/2005/11/03/483726.aspx |