How do I automate a managed application using Reflection?
Please remember to mark the replies as answers if they help and unmark them if they provide no help. Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.
Please remember to mark the replies as answers if they help and unmark them if they provide no help. Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.
Marked as answer byXiaoyun Li – MSFTWednesday, April 8, 2009 6:23 AM
Please remember to mark the replies as answers if they help and unmark them if they provide no help. Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.
Marked as answer byXiaoyun Li – MSFTWednesday, April 8, 2009 6:23 AM
The common language runtime loader manages application domains, which are constituent defined boundaries around objects that have the same application scope.This management includes loading each assembly into the appropriate application domain and controlling the memory layout of the type hierarchy within each assembly.
Assemblies contain modules, modules contain types, and types contain members.Reflection provides objects that encapsulate assemblies, modules, and types.You can use reflection to dynamically create an instance of a type, bind the type to an existing object, or get the type from an existing object.You can then invoke the type’s methods or access its fields and properties.
Please remember to mark the replies as answers if they help and unmark them if they provide no help. Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.