Is CompileAssemblyFromDom faster than CompileAssemblyFromSource?
It should be as it presumably bypasses the compiler front-end.
|
2
|
Is CompileAssemblyFromDom faster than CompileAssemblyFromSource? It should be as it presumably bypasses the compiler front-end. |
|||
|
|
|
|
CompileAssemblyFromDom compiles to a .cs file which is then run through the normal C# compiler. Example:
which shows errors in a (now nonexistent) temp file:
So I guess the answer is "no" |
||||
|
|
|
I've tried finding the ultimate compiler call earlier and I gave up. There's quite a number of layers of interfaces and virtual classes for my patience. I don't think the source reader part of the compiler ends up with a DOM tree, but intuitively I would agree with you. The work necessary to transform the DOM to IL should be much less than reading C# source code. |
||
|
|
|
|
CompileAssemblyFromDom is certainly faster than CompileAssemblyFromSource, because it does not have to parse the source file. However, you have to take into account the time it takes to generate the DOM versus the time it takes to generate the source code. Depending on what you do, the code that uses CompileAssemblyFromDom could be slower. It would be interesting to perform a benchmark to compare both approaches. |
||
|
|