Technical Overview of the CLR
Hi again, and welcome to my blog. In this episode i'll talk about the article named technical overview of the Common Language Runtime. An article written by Erik Meijer and Jim Miller. Click on the next link to read it: http://34.212.143.74/s201911/tc3048/clr.pdf. Hope you enjoy it :) The main topic of the article is the difference between Common Language Interface, its acroniy CLI, and the Java Virtual Machine, that is JVM. The CLI develop system which allows programs (of different programming language) to be run on different devices. CLI includes Common Type System and Common Language Specification. So you can ignore the programming language where the program is written, because with the use of IL, Intermediate Language, where programs will be compiled. Then it will be compiled by the Common Language Runtime(CLR) to the target machine language. About the Java Virtual Machine, it executes Java programs, which first they are compiled with the intermediate language called Bytecod...