MSDN Learning

xiaoxiao2021-03-06  70

TWO MAIN COMPONENT:. COMMON LANGUAGE RUNTIME & THE .NET FRAMEWORK COMMON LANGUAGE RUNTIME IS THE FOUNDATION OF THE .NET FRAMEWORK.IT IS A AGENT TO MANAGE CODE AT RUNTIME.IT PROVIDE CORE SERVICES SUCH AS MEMORY MANAGEMENT, THREAD MANAGEMENT AND REMOTING.THE .NET FRAMWORKD LIBRARY IS A CompRehensive, Object-Orientde Collection of Reusable Types That You Can Use to Devplop Applications.

Common language runtime1. Management execution process

Complier converts the source code into MSIL (Just-in-Time Jit Compiler) converts MSIL to CPU-Specific Code. Compiler converts MSIL to MSIL, will also generate Metadata, Metadata describes the type definition of the code, the signature of the Type member, the Code's Reference, and the code execution period. Metadata data and msil make your code to be described. Only the MSIL language will be converted into native code when executed, and the Code must pass through a verification process during the conversion. Unless the administrator establishes a security mechanism allows these CODEs to be executed by verification. The process of verification is to determine if the Code is the process of Type Safe. 1. Type's Reference and Type compatible 2. On only the appropriate operation in Project is called 3. Declaration and definition

Execute CODE.

2.automatic memory managementhttp: //msdn.microsoft.com/library/default.asp? URL = / library / en-us / cpguide / html / cpconeventsinwebformsControls.asp

转载请注明原文地址:https://www.9cbs.com/read-92686.html

New Post(0)