Day 18 : Some important concepts in C#
In this blog we are going to learn some important concepts like IL, JIT... IL : IL stands for intermediate language. This term is also known as MSIL (Microsoft Intermediate Language) or CIL (Common Intermediate Language. Using JIT (Just-in-time) compiler we can use IL on any computer architecture. The IL is the object-oriented programming language used by compilers on .NET framework. The IL includes two-types of instruction set : Base instruction (CPU instructions) and Object-model instructions (high-level). In C# before the code get compiled in machine code it compile in IL code. How to get IL code : 1) Build the program first 2) Open the program in file explorer. 3) Their is folder named as .dll(dynamic link library) extension which linked with console application. 4) Open the developer command prompt of vs and type "ildasm" and enter We can see a window where we are going to drop the .dll in that window. 4) Click on the console app until we see the void main and open the...