0
Describe CLR in .net..
Not able to understand the term !
2 Answers
+ 1
All the languages of .net ecosystem first gets compiled into a bytecode named Common Intermediate Language or CIL.
The task of CLR or Common Language Runtime is to take that CIL code and convert it to machine language.
Just google about it, it's always better to find and trying to understand the answer by yourself, rather than asking it directly.
0
It is the first thing you learn and the last thing you need to known. Your code is translated in to machine code before it can run. So start coding and see what happens.