You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reflection.Emit is as good start for a codegen engine, but it has its downsides: it requires us to load the assemblies referenced by the generated code in our own process, and not every valid assembly could be represented by Reflection.Emit (because of a sequential nature of its' type generation).
I think, we should use Mono.Cecil instead.
The text was updated successfully, but these errors were encountered:
Reflection.Emit is as good start for a codegen engine, but it has its downsides: it requires us to load the assemblies referenced by the generated code in our own process, and not every valid assembly could be represented by Reflection.Emit (because of a sequential nature of its' type generation).
I think, we should use Mono.Cecil instead.
The text was updated successfully, but these errors were encountered: