adspace


What is "common language runtime" (clr) in .net?

Answer Posted / Manoj Kumar Baranwal

The Common Language Runtime (CLR) is the core component of the .NET Framework. It provides services for application execution, memory management, exception handling, security, and interoperability with unmanaged code. The CLR compiles managed code into an intermediate language (IL), executes it, and manages resources such as memory, threads, and exceptions.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1140