What is clr? How does work clr & wht is work of clr?
Answer Posted / Mohit Sharma
CLR stands for the Common Language Runtime. It's a key component of the .NET Framework and provides an execution environment for .NET applications. nnThe CLR works by compiling high-level programming languages like C#, F#, or VB.NET into an intermediate language called MSIL (Microsoft Intermediate Language). The CLR then converts MSIL into native machine code at runtime using the JIT (Just-In-Time) compiler.nnThe main work of the CLR is to manage the runtime environment for .NET applications, including memory allocation, garbage collection, exception handling, thread management, and security.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers