52ky 发表于 2021-6-11 14:13:12

Reflection in .NET

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



页: [1]
查看完整版本: Reflection in .NET