up vote 1 down vote favorite
share [g+] share [fb]

Does anyone know whether it is possible (theoretically or in reality) to use the CodeDom that seems to be provided in Delphi's .NET counterpart?

link|improve this question

Maybe a little clarification needed, are you wanting to use the CodeDom to view code created using Delphi 2009 or from within Delphi 2009 to view .NET code? – jamiei May 4 '09 at 21:23
I would what the CodeDom to create code inside Delphi 2009 (Win32). – Mmarquee May 5 '09 at 12:22
Clarification - What I actually want to do is load in code from a project, press a button and add standard headers, etc to each until in the project. I can probably write this with OpenTools, but this looked like a cool way of doing this – Mmarquee May 5 '09 at 12:24
1  
Yeah, sorry, the .NET CodeDom is really only applicable to .NET code generation. Good luck! – jamiei May 5 '09 at 14:07
feedback

1 Answer

up vote 3 down vote accepted

In short: No, the .NET CodeDom relies upon code being compiled into CIL and .NET ByteCode and will not work for Win32 Compiled Delphi Programs.

link|improve this answer
I thought as much, oh well, back to rolling my own! – Mmarquee May 5 '09 at 12:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.