1.

What is the role of CLR in C#.NET?

Answer»

Common Language RUNTIME (CLR) is defined in the Common Language Infrastructure (CLI).

CLR is the VIRTUAL Machine component managing the execution of PROGRAMS written in languages using .NET Framework. Some of its examples include C#, F#, etc.

The .NET source code is compiled to Common Language Infrastructure (CLI). The code is executed at runtime after the CIL is converted to native code. This is DONE using JIT (Just-In-Compiler) compiler.

C# is designed for the Common Language Infrastructure (CLI), which describes executable code and runtime environment. This allows usage of MULTIPLE high-level languages on various computer platforms and architectures.



Discussion

No Comment Found