Does anyone know if there’s a way to execute C# code directly from the SDK?
Currently I’m using MXS as an interop, sending a script from SDK to MXS, and then having MXS execute the C# and return any compiler warnings/errors/etc.
Is there a more direct way of doing this?
Imagine I want to execute the following C# code:
float f = Math.Abs(-1.0f);
and have the value pass back to C++. Is it possible? I know how to do it with MXS, but I want to cut out the middleman.

