Ramblings from the Creator of WilsonDotNet.com
Some developers avoid code generation because they have lots of custom code. The key isn't avoiding custom code, but knowing precisely where to put it. Isolating handcrafted custom code from the plumbing goop is code generation's single biggest benefit. Code generation splits your application into technology-driven templates, business-defining metadata, and custom business algorithms. These three elements evolve on different timescales; treating them independently lets you weather massive technology changes or use templates to reuse the same technology to solve totally different problems.
Kathleen's article refers to "dual classes" when discussing partial classes. I know that partial classes are classes split over multiple files, but am not sure what dual classes are. Is she referring to base and inherited classes? Thanks, Jason
Yes, I hadn't heard the term much either, but it does refer to inheritance.
Code Generation