是否可以在文本框中编译任何给定的C#代码,然后将其保存到exe?
这可能吗?如果是这样,怎么办呢?
答案 0 :(得分:4)
是的,有可能。您可以使用CodeDOM。这是an example:
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.Rnge(1,100)
where i % 2 == 0
select i;
}
}");
results.Errors.Cast<CompilerError>().ToList().ForEach(error => Console.WriteLine(error.ErrorText));
}
}
答案 1 :(得分:0)
除了在运行时编译代码之外,您只需将代码从文本框保存到磁盘,然后使用csc.exe
进行编译。该命令看起来类似于以下内容:
%systemroot%\Microsoft.NET\Framework\v3.5\csc /out:filename.exe filename.cs