使用C#/所有静态.NET语言的最佳解决方案是将CodeDOM用于此类情况。(请注意,它的另一个主要目的是动态构造一些代码甚至整个类。)
这是LukeH的博客中的一个很好的简短示例,该博客也出于娱乐目的而使用了一些LINQ。
using System;using System.Collections.Generic;using System.Linq;using Microsoft.CSharp;using System.CodeDom.Compiler;class Program{ static void Main(string[] args) { var csc = new CSharpCodeProvider(new Dictionary<string, string>() { { "CompilerVersion", "v3.5" } }); var parameters = new CompilerParameters(new[] { "mscorlib.dll", "System.Core.dll" }, "foo.exe", true); parameters.GenerateExecutable = true; CompilerResults results = csc.CompileAssemblyFromSource(parameters, @"using System.Linq; class Program { public static void Main(string[] args) { var q = from i in Enumerable.Range(1,100) where i % 2 == 0 select i; } }"); results.Errors.Cast<CompilerError>().ToList().ForEach(error => Console.WriteLine(error.ErrorText)); }}
这里最重要的类是
CSharpCodeProvider利用编译器动态编译代码的类。如果要随后运行代码,则只需要使用一些反射即可动态加载程序集并执行它。
这是C#中的另一个示例(虽然简洁程度稍差一些),另外还向您精确演示了如何使用
System.Reflection名称空间运行运行时编译的代码。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)