Resources:
1. ". NET IL Assembler"
Knowledge Points:
The Common Language runtime is the core of the entire . NET, which is the runtime environment for . NET applications and provides the operating layer of the . NET application and the underlying operating system.
Common Language Specifications is guaranteed. NET applications are a collection of rules for interoperability between
The two main parts of a . NET application's idle middle representation are metadata metadata and managed code managed. A meta-array is a collection of links between all of the application's structured item descriptors and descriptors, including classes, class members, attributes, global items, and so on. Managed code represents the function of an application function and is represented by an abstract binary form language, or CIL, that is known as the MSIL. The runtime environment is responsible for managing IL code. CLR management consists mainly of three parts: type control, structured exception handling, and garbage collection. Type control involves validating and converting the type of item during the execution phase. Managed exception handling is similar to unmanaged structured exception handling, except that it is done by the runtime instead of the operating system. Garbage collection involves automatically confirming and processing objects that are no longer in use.
. NET Il Learning notes (i)