I'm dynamically compiling code, using the CompileAssemblyFromSource
with multiple sources.
In the event of a compile error I can retreive the line number etc. from the Errors
collection.
However the line number is the line number within all sources. What I need is which source and the line number from within the failed source (among the added sources).
Is that possible without doing calculation acrobatics?