3

我正在使用 CodeDom 来允许在我正在创建的应用程序中运行自定义脚本 (C#)。在编写脚本时,我希望能够检查编译错误。代码会在很久以后添加到内存中并编译到内存中并运行,所以我不希望在编写脚本时编译的程序集保留在内存中。

实现这一目标的最佳方法是什么?

编译后是否可以从内存中删除程序集?

private void Item_Click(object sender, EventArgs e)
{
    List<string> assemblyNames = new List<string> { };
    List<string> code = new List<string> { };
    foreach (string str in GetCompileParameters())
            if (!assemblyNames.Contains(str))
                assemblyNames.Add(str);
    code.AddRange(GetScriptCode());

    CodeDomProvider provider = new Microsoft.CSharp.CSharpCodeProvider();
    CompilerParameters mCompileParams = new CompilerParameters(assemblyNames.ToArray());
    mCompileParams.GenerateInMemory = true;
    mCompileParams.CompilerOptions = "/target:library /optimize";

    CompilerResults results = provider.CompileAssemblyFromSource(mCompileParams, code.ToArray());
    if (results.Errors.HasErrors)
    {
        string error = "The following compile error occured:\r\n";
        foreach (CompilerError err in results.Errors)
            error += "File: " + err.FileName + "; Line (" + err.Line + ") - " + err.ErrorText + "\n";
        MessageBox.Show(error);
        return;
    }
    MessageBox.Show("No errors found");

    //Need to Remove assembly here
}

更新:

谢谢基思。

对于任何感兴趣的人,这是我与 Roslyn 一起使用的新代码

using Roslyn.Compilers;
using Roslyn.Compilers.CSharp;

...

private void Item_Click(object sender, EventArgs e)
    {
        List<string> assemblyNames = new List<string> { }; 
        foreach (string str in GetCompileParameters())
                if (!assemblyNames.Contains(str))
                    assemblyNames.Add(str);

        SyntaxTree tree = SyntaxTree.ParseCompilationUnit(mScenario.GetScriptCode("ScriptName"));
        Compilation com = Compilation.Create("Script");
        com = com.AddReferences(new AssemblyFileReference(typeof(Object).Assembly.Location)); // Add reference mscorlib.dll
        com = com.AddReferences(new AssemblyFileReference(typeof(System.Linq.Enumerable).Assembly.Location)); // Add reference System.Core.dll
        com = com.AddReferences(new AssemblyFileReference(typeof(System.Net.Cookie).Assembly.Location)); // Add reference System.dll
        foreach (string str in assemblyNames)
            com = com.AddReferences(new AssemblyFileReference(str)); // Add additional references
        com = com.AddSyntaxTrees(tree);

        Diagnostic[] dg = com.GetDiagnostics().ToArray();
        if (dg.Length > 0)
        {
            string error = "The following compile error occured:\r\n";
            foreach (Diagnostic d in dg)
                error += "Info: " + d.Info + "\n";
            MessageBox.Show(error, "Compile Failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
        } else {
            MessageBox.Show("No errors found.", "Code Compiler", MessageBoxButtons.OK, MessageBoxIcon.Information);
        }
    }
4

2 回答 2

2

您可以使用新发布的http://msdn.microsoft.com/en-us/roslyn

于 2011-10-20T03:04:56.380 回答
1

For an example of how to do this with the Roslyn CTP, take a look at http://www.dotnetexpertguide.com/2011/10/c-sharp-syntax-checker-aspnet-roslyn.html

于 2011-10-21T15:42:17.443 回答