loading a script in Runtime, is it possible?

hey all,

simple question: is it possible to load a script in Runtime, something like what you do with “Lua” and c++?

thanks,
-Emmanuel

you can use EVAL or load an assembly at runtime and use it through reflection yes.

but it will be slower than code thats in the project and more to significantly more complex to handle

also its not possible on every platform (more correctly its basically possible for standalone windows - osx)

ok, thanks

don’t even try it on iOS, you’ll get your app rejected for loading code that’s not already in the app.

its no problem on iOS as both mechanisms don’t work there anyway due to AOT (-> no eval and no .net assembly loading)