Reflection in .NET,.NET Framework’s Reflection API allows you to fetch type (assembly) information at runtime.
Contents
* Introduction
* What is .NET Reflection?
* Road Map
o The System.Reflection Namespace
o The System.Type Class
o Using System.Object.GetType()
o Using System.Type.GetType()
o Using the typeof () C# Operator
* Type Properties
* Type Methods
* Reflecting on Methods
* Reflecting on Fields and Properties
* Reflecting on Implemented Interfaces
* Reflecting on Method Parameters and Return Values
* Reflecting on Constructor
* Assembly Class
* Dynamically Loading an Assembly
* Late Binding
* Reflection Emit