Hello World! :-)
I have an interesting challenge that I'm wondering if anyone here can give me some direction.
Currently I have some code that is being generated dynamically. Another words a C# .cs file is created dynamically by this program, and the intention is to include this C# file in a project where you want to use it.
The challenge is that I would like to instead of generating a C# .cs file, I want to generate a .DLL file.
That way wherever you want to use this generated code, you can use it in any .NET language, and you would not be confined to C# since the code currently being generated is in C#. If I can figure out how to modify the generator (I wrote it so i have the source code) to create a DLL instead, it could be referenced by any kind of .NET application (not only C#) therefore it would be more usable.
What do you guys think? Thanks in advance.