Can I execute C# code in C#? I've the variable:
and I want execute it, is there a function for do this?
C#:
string csharpCode = @"
using System;
class Program {
static void Main() {
Console.WriteLine(""Hello world"");
}
}
"
and I want execute it, is there a function for do this?
Last edited by a moderator: