C# Code generation .net 4.5
-
Hi,
do you know any c# code generation framework (.net 4.5)?
Any resources / best practices for that topic?Here is a code generation framework: CodeWorker[^]
The difficult we do right away... ...the impossible takes slightly longer.
-
Hi,
do you know any c# code generation framework (.net 4.5)?
Any resources / best practices for that topic?The truth is you can compile C# programs on CommandPrompt (aka DOS). And with .NET Framework you can create text files with any extension including cs (for C#). And also with .NET Framework you can issue CommandPrompt commands. So, in theory you can make a C# program that creates c# programs and also that runs them.
-
Hi,
do you know any c# code generation framework (.net 4.5)?
Any resources / best practices for that topic?Hi, If you are in visual studio and want to get your hands dirty, you can take a look at A built-in system for code generation: http://msdn.microsoft.com/en-us/library/vstudio/bb126445.aspx[^] The built-in system for addins (you can write your own addin that can write/edit/delete files in an open solution): Visual Studio Add Ins - In Depth[^] Kind Regards, Keld Ølykke