Vithal Wadje
what is CLR in .net ?
By Vithal Wadje in ASP.NET on Oct 17 2012
  • Arjun Dhilod
    Jul, 2015 3

    CLR- CLR is the heart of the .Net framework and it does 4 primary important things- 1. Garbage collection2. CAS (Code Access Security)3. CV (Code Verification)4. IL to Native translation.Ref :- http://www.codeproject.com/Articles/781096/What-is-IL-code-CLR-CTS-CLS-JIT

    • 2
  • Sanjib Barik
    Apr, 2015 1

    CLR is a execute engine in .net framework. It is a runtime environment. It take responsible to execute code to native code. it has some services:- 1:- Memory management. 2:-Providing metadata. 3:-Type safety. 4:-Managing exceptions and errors. 5:-Compilation of IL into native executable code.

    • 1
  • KRayudu V
    May, 2013 31

    CLR is a component divided in sub components which perform their own respective tasks. CLR as the name specifies provides a common runtime environment for different languages like VC++, C#, VB.NET, J# and JavaScript. The code written in these languages is compiled with their respective language compliers to give a common intermediate language called MSIL (Microsoft Intermediate Language) and Metadata. This files generated are called as PE (Portable Executable).

    • 1
  • KRayudu V
    May, 2013 31

    CLR is a component divided in sub components which perform their own respective tasks. CLR as the name specifies provides a common runtime environment for different languages like VC++, C#, VB.NET, J# and JavaScript. The code written in these languages is compiled with their respective language compliers to give a common intermediate language called MSIL (Microsoft Intermediate Language) and Metadata. This files generated are called as PE (Portable Executable).

    • 1
  • KRayudu V
    May, 2013 31

    CLR is a component divided in sub components which perform their own respective tasks. CLR as the name specifies provides a common runtime environment for different languages like VC++, C#, VB.NET, J# and JavaScript. The code written in these languages is compiled with their respective language compliers to give a common intermediate language called MSIL (Microsoft Intermediate Language) and Metadata. This files generated are called as PE (Portable Executable).

    • 1
  • kiran kumar
    Feb, 2013 4

    CLR is a RunTime, CLR is used to run .net programs, we can say CLR is heart of .NET

    • 1
  • beauXjames tschirhart
    Jan, 2013 8

    As the others are correct, I'd like to add another reason why one may choose to implement a CLR project. Occasionally, there may be the desire to create a library in C# that you may want to expose to SQL Server. You can deploy a CLR project directly to SQL and, with the proper attributes, have all types of Stored Procedures and functions available in your SQL context. It can be useful, however now that DB Projects are shipping and the latest SQL Servers are so robust, they aren't as attractive as other options may be.

    • 1
  • Dinesh Kumar
    Oct, 2012 24

    Common Language Runtime - It is the implementation of CLI. The core runtime engine in the Microsoft .NET Framework for executing applications. The common language runtime supplies managed code with services such as cross-language integration, code access security, object lifetime management, resouce management, type safety, pre-emptive threading, metadata services (type reflection), and debugging and profiling support. The ASP.NET Framework and Internet Explorer are examples of hosting CLR.

    • 1
  • Pavan Kumar
    Oct, 2012 19

    The full form of CLR is Common Language Runtime.A runtime is an environment in which programs are executed.CLR is a nothing but the runtime enviroment.CLR is the heart of .NET. It executes MSIL code.Another key feature of the .NET CLR is garbage collection.It is responsible for destroying objects which are no longer in use. The CLR's garbage collector checks the heap for unreferenced objects and frees the memory used by these objects.

    • 1
  • Sadiqullah Ghani
    Aug, 2018 27

    CLR by having the CTS and CLS and done convert MSIL code to machine language by ( JIT compiler )

    • 0
  • Sadiqullah Ghani
    Aug, 2018 27

    CLR by having the CTS and CLS and done convert MSIL code to machine language by ( JIT compiler )

    • 0
  • Sadiqullah Ghani
    Aug, 2018 27

    CLR by having the CTS and CLS and done convert MSIL code to machine language by ( JIT compiler )

    • 0
  • Hamid Khan
    Jan, 2015 7

    CLR is a heart of .Net Framework. Role Garbage collection. Memory Mgmt Type Safety

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS