20

CompileAssemblyFromDom比CompileAssemblyFromSource快

应该是因为它可能绕过了编译器前端。

4

2 回答 2

9

CompileAssemblyFromDom 编译为 .cs 文件,然后通过普通的 C# 编译器运行该文件。

例子:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.CSharp;
using System.CodeDom;
using System.IO;
using System.CodeDom.Compiler;
using System.Reflection;

namespace CodeDomQuestion
{
    class Program
    {

        private static void Main(string[] args)
        {
            Program p = new Program();
            p.dotest("C:\\fs.exe");
        }

        public void dotest(string outputname)
        {
            CSharpCodeProvider cscProvider = new CSharpCodeProvider();
            CompilerParameters cp = new CompilerParameters();
            cp.MainClass = null;
            cp.GenerateExecutable = true;
            cp.OutputAssembly = outputname;
            
            CodeNamespace ns = new CodeNamespace("StackOverflowd");

            CodeTypeDeclaration type = new CodeTypeDeclaration();
            type.IsClass = true;
            type.Name = "MainClass";
            type.TypeAttributes = TypeAttributes.Public;
            
            ns.Types.Add(type);

            CodeMemberMethod cmm = new CodeMemberMethod();
            cmm.Attributes = MemberAttributes.Static;
            cmm.Name = "Main";
            cmm.Statements.Add(new CodeSnippetExpression("System.Console.WriteLine('f'zxcvv)"));
            type.Members.Add(cmm);

            CodeCompileUnit ccu = new CodeCompileUnit();
            ccu.Namespaces.Add(ns);

            CompilerResults results = cscProvider.CompileAssemblyFromDom(cp, ccu);

            foreach (CompilerError err in results.Errors)
                Console.WriteLine(err.ErrorText + " - " + err.FileName + ":" + err.Line);

            Console.WriteLine();
        }
    }
}

它在(现在不存在的)临时文件中显示错误:

) 预期 - c:\Documents and Settings\jacob\Local Settings\Temp\x59n9yb-.0.cs:17

; 预期 - c:\Documents and Settings\jacob\Local Settings\Temp\x59n9yb-.0.cs:17

无效的表达式术语 ')' - c:\Documents and Settings\jacob\Local Settings\Temp\x59n9yb-.0.cs:17

所以我想答案是“不”

于 2008-08-27T01:03:17.197 回答
0

我之前尝试过找到最终的编译器调用,但我放弃了。对于我的耐心,有很多层的接口和虚拟类。

我不认为编译器的源代码阅读器部分以 DOM 树结尾,但直觉上我会同意你的看法。将 DOM 转换为 IL 所需的工作应该比阅读 C# 源代码要少得多。

于 2008-08-07T12:48:29.557 回答