Please login to save your progress.

Introduction to Reflection API

Assembly

Using Assembly you can define and load assemblies, load modules that are listed in the assembly manifest, and locate a type from this assembly and create an instance of it.

Assembly class represents an assembly, which is a reusable, versionable, and self-describing building block of a common language runtime application. Assemply type provides various properties and method for getting any kind of information about assembly, getting loaded assemblies and loading assemblies

Some Properties of Assembly class

Getting loaded Assemblies

get the assembly that contains the code that is currently executing
 
get the process executable in the default application domain. In other application domains, this is the first executable that was executed by AppDomain.ExecuteAssembly method
 
get the assembly of the method that invoked the currently executing method

Loading assemblies

load an assembly given the long form of its name
 
load the assembly with a common object file format (COFF)-based image containing an emitted assembly

other properties and methods you can check on MSDN

Example

Get executing assembly and output its name and version:

 

Page 2 of 11