C# as a scripting language?

  • Thread starter Thread starter chemicalcold0
  • Start date Start date
C

chemicalcold0

Hello,

I'm trying to figure out if there is a way to use C# as a scripting
language in my application. The idea is this: give the scripting guy
some events he can register with and execute C# code if they happen,
have him click like a "compile" button to see if there are any errors
in his code.. and if it works load it kind of like a module into your
running code.
Is anything like that possible?

Thanks in advance
 
ah sweet, thank you :)

You'll still need a way to automatically load your assemblies
(Reflection). However, it is possible and with the given link you are on
the right way.
 
Back
Top