Reflection Namespaces in Visual Studio

The reflection namespaces in the .NET Framework are:

  • System.Reflection — contains classes and interfaces that provide access to loaded types and their members.

  • System.Reflection.Emit — contains classes that allow a you to emit metadata and Microsoft intermediate language (MSIL) and optionally generate a PE file on disk. The primary clients of these classes are script engines and compilers.

See Also

Other Resources

.NET Framework Class Library in Visual Studio