Hi,
I have a C# application which generates .NET functions at run-time and executes them. To do so, it generates C# in strings and calls the online C# compiler to convert it into CLR to be JIT compiled and executed.
For performance reasons, I would like to be able to generate directly CLR (in strings or through an internal representation) and execute it without using any compiler (but perhaps the JIT compiler).
Is that possible ? I've seen some articles about code injection, but that doesn't exactly fits the bill.
Thank you !