0

是否可以在文本框中编译任何给定的 C# 代码,然后将其保存到 exe?

这可能吗?如果是这样,怎么办?

4

2 回答 2

4

对的,这是可能的。您可以使用CodeDOM。这是一个例子

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));
    }
}
于 2012-04-16T16:22:55.417 回答
0

除了在运行时编译代码之外,您还可以将文本框中的代码保存到磁盘,然后使用csc.exe它来编译它。该命令类似于以下内容:

%systemroot%\Microsoft.NET\Framework\v3.5\csc /out:filename.exe filename.cs
于 2012-04-16T16:24:45.883 回答