Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is clr.dll on .Net framework and what does it do?

Tags:

I use profiling tools on VS2012 and see,that clr.dll works a lot of time. Is it Garbage Collection? What clr.dll can do? Please tell me. Thank you!

like image 618
user2545071 Avatar asked Oct 31 '13 05:10

user2545071


People also ask

What does CLR DLL do?

clr. dll is the primary binary in the . NET runtime version 4.0 and forward. This dll used to be mscorwks.

What is CLR in .NET and how it works?

The Common Language Runtime (CLR) is the main machine or key component of Microsoft Dot Net Framework and it manages the total execution of . NET programs. A process known as JIT ( just-in-time compilation) converts compiled code into machine language, which the computer's CPU then executes.

What is CLR in .NET with example?

NET CLR. As part of the Microsoft . NET Framework, the Common Language Runtime (CLR) is the programming (Virtual Machine component) that manages the execution of programs written in any language that uses the . NET Framework, for example C#, VB.Net, F# and so on.

What does the CLR in C# do?

CSharp Online Training Common Language Runtime (CLR) manages the execution of . NET programs. The just-in-time compiler converts the compiled code into machine instructions. This is what the computer executes.


1 Answers

Common Language Runtime. It's basically the engine for .NET

like image 92
ElGavilan Avatar answered Oct 21 '22 03:10

ElGavilan