ColdFusion CFC implementation of C# Partial Class?
Posted
by Brian David Berman
on Stack Overflow
See other posts from Stack Overflow
or by Brian David Berman
Published on 2010-05-03T19:26:43Z
Indexed on
2010/05/03
19:38 UTC
Read the original article
Hit count: 301
Does ColdFusion offer a mechanism for splitting CFCs into multiple files? I am NOT talking about extension, I am talking about splitting the SAME CFC into multiple files; the same way C# allows for "partial" classes. The reason for this is because I am using T4 to generate a bunch of CFCs and I want to be able to tag functionality onto the generated CFC by doing so in another file. I want to do this in a way that doesn't violate the Open-Closed Principle.
© Stack Overflow or respective owner