20

CompileAssemblyFromDomCompileAssemblyFromSourceより高速ですか?

おそらくコンパイラのフロントエンドをバイパスするはずです。

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 に答える