这个错误对我来说完全没有意义。 我正在使用CodeDOM来编译可执行文件。 这是我的编译课程:
using System;
using System.CodeDom.Compiler;
using System.IO;
using Microsoft.CSharp;
class Compiler
{
public static bool Compile(string[] sources, string output, params
string[] references)
{
var results = CompileCsharpSource(sources, "result.exe");
if (results.Errors.Count == 0)
return true;
else
{
foreach (CompilerError error in results.Errors)
Console.WriteLine(error.Line + ": " + error.ErrorText);
}
return false;
}
private static CompilerResults CompileCsharpSource(string[] sources,
string output, params string[] references)
{
var parameters = new CompilerParameters(references, output);
parameters.GenerateExecutable = true;
using (var provider = new CSharpCodeProvider())
return provider.CompileAssemblyFromSource(parameters, sources);
}
}
以下是我编译源码的方法:
Compiler.Compile(srcList, "test.exe", new string[] { "System.dll", "System.Core.dll", "mscorlib.dll" });
这是我正在编译错误发生地的源代码的一部分:
System.Diagnostics.Process p;
if (System.Diagnostics.Process.GetProcessesByName("whatever").Length > 0)
p = System.Diagnostics.Process.GetProcessesByName("whatever")[0];
else
return false;
所以我在编译时引用System.dll,我在进程前编写System.Diagnostics,(我尝试使用System.Diagnostics但是我产生了类似且不太具体的错误),并且由于某种原因我收到了这个错误。我很感激一些帮助。
答案 0 :(得分:2)
您没有将引用传递给CompileCsharpSource
。
将Compile
更改为:
public static bool Compile(string[] sources, string output, params string[] references)
{
var results = CompileCsharpSource(sources, "result.exe", references);
if (results.Errors.Count == 0)
return true;
else
{
foreach (CompilerError error in results.Errors)
Console.WriteLine(error.Line + ": " + error.ErrorText);
}
return false;
}