May 2010
Intermediate to advanced
1272 pages
61h 18m
English
Reflection.EmitThe System.Reflection.Emit namespace provides objects for generating assemblies, types, and type members at runtime. Basically you need to perform the following operations sequentially:
1. Create an in-memory assembly within the current application domain with an instance of the AssemblyBuilder class.
2. Create a module for containing types via an instance of the ModuleBuilder class.
3. Create types with instances of the TypeBuilder class.
4. Add members to the TypeBuilder via XBuilder objects, such as MethodBuilder, FieldBuilder, and PropertyBuilder.
5. Save the assembly to disk if required.
The code in Listing 47.4 demonstrates how to create dynamically a simple implementation of the Person ...
Read now
Unlock full access