How to compile source code into dynamic method ?
System.Reflecti on.Emit.Dynamic Method requires IL code for creation.
How to use C# source code to create method instead of manually creating IL
code ?
Assembly compilation requires passing parameters to access calling assembly
members. Assemblies cannot unloaded.
Dynamic method has automatic acces to assembly members. Memory allocated by
dynamic code can be re-used if code is released.
Andrus.
System.Reflecti on.Emit.Dynamic Method requires IL code for creation.
How to use C# source code to create method instead of manually creating IL
code ?
Assembly compilation requires passing parameters to access calling assembly
members. Assemblies cannot unloaded.
Dynamic method has automatic acces to assembly members. Memory allocated by
dynamic code can be re-used if code is released.
Andrus.
Comment