我正在创建一个 C# 应用程序,其中代码在运行时编译,代码包含在一个字符串中(字符串从 ScintillaNET 控件获取其值,它只返回文本,带有代码的字符串按预期工作)。
我的问题是:有没有办法在运行时从这个源代码制作某种类对象?例如,字符串包含以下值:
namespace _Testing {
class Program {
static void Main(string[] args) {
Console.Title = "Program";
Console.WriteLine("If you can read this, it's all good!");
Console.ReadKey();
}
}
}
此代码由我的 CSharpCodeProvider 编译器在运行时编译(使用 CompileAssemblyFromSourceBatch - 因为我正在传递要编译的类数组)。但是,我希望能够在运行时设置编译器的 MainClass 属性,这需要从类中获取命名空间。
所以我正在考虑为每个类源代码字符串创建某种对象,这将使我能够实现我的目标。当然也欢迎任何其他想法。