在文本框中编译代码并保存到exe
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在文本框中编译代码并保存到exe相关的知识,希望对你有一定的参考价值。
是否可以在文本框中编译任何给定的C#代码,然后将其保存到exe?
这可能吗?如果是这样,怎么办呢?
答案
对的,这是可能的。你可以使用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));
}
}
另一答案
除了在运行时编译代码之外,您只需将代码从文本框保存到磁盘,然后使用csc.exe
进行编译。该命令看起来类似于以下内容:
%systemroot%Microsoft.NETFrameworkv3.5csc /out:filename.exe filename.cs
以上是关于在文本框中编译代码并保存到exe的主要内容,如果未能解决你的问题,请参考以下文章