Dinesh Kumar
what is CLR?
By Dinesh Kumar in Visual Basic .NET on Oct 24 2012
  • Shivam Shukla
    Jun, 2018 27

    In simple words: The .NET Framework provides a run-time environment called the common language runtime, which runs the code and provides services that make the development process easier.Compilers and tools expose the common language runtime's functionality and enable you to write code that benefits from this managed execution environment. Code that you develop with a language compiler that targets the runtime is called managed code; it benefits from features such as cross-language integration, cross-language exception handling, enhanced security, versioning and deployment support, a simplified model for component interaction, and debugging and profiling services.More Technical: The Common Language Runtime (CLR), the virtual machine component of Microsoft's .NET framework, manages the execution of .NET programs. A process known as just-in-time compilation converts compiled code into machine instructions which the computer's CPU then executes. The CLR provides additional services including memory management, type safety, exception handling, garbage collection, security and thread management. All programs written for the .NET framework, regardless of programming language, are executed by the CLR. All versions of the .NET framework include CLR. The CLR team was started June 13th, 1998.CLR implements the Virtual Execution System (VES) as defined in the Common Language Infrastructure (CLI) standard, initially developed by Microsoft itself. A public standard defines the Common Language Infrastructure specification.For more check wiki link: https://en.wikipedia.org/wiki/Common_Language_RuntimeLink for Microsoft docs: https://docs.microsoft.com/en-us/dotnet/standard/clr

    • 0
  • Dinesh Kumar
    Oct, 2012 24

    The CLR is a multi-language execution environment. There are currently over 15 compilers being built by Microsoft and other companies that produce code that will execute in the CLR.

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS