What are clr?cts?cls?
Answer Posted / gangadhar
All .NET applications are compiled into Intermediate
Language code (MSIL). When executed on the CLR, MSIL is
converted into native machine code specific to the
operating platform. This process is done by a Just In Time
(JIT) compiler. The code executed by the CLR is called as
Managed Code. This code is type safe and thoroughly checked
by the CLR before being deployed. The .NET runtime also
provides a facility to incorporate existing COM components
and DLL's into a .NET application. Code that is not
controlled by the CLR is called Unmanaged Code.
The .NET Framework is further comprised of Common Type
System (CTS) and Common Language Specification (CLS). The
CTS defines the common data types used by .NET programming
languages. The CTS tells you how to represent characters
and numbers in a program. The CLS represents the guidelines
defined by for the .NET Framework. These specifications are
normally used by the compiler developers and are available
for all languages, which target the .NET Framework.
| Is This Answer Correct ? | 20 Yes | 4 No |
Post New Answer View All Answers
is there any third party tools are using in .net technologies? what are there ? give me the brief introduction?
What is Bundling and Minification in MVC?
Fetch one page value to another page without using state-managment ?
Can we use a static function with a non-static variable?
What are the different methods of session maintenance in asp.net?
What are the Types of objects in ASP
Explain the use of resource manager class in .net.
What is http post action?
What is the difference between exe and dll?
If iam developing an application that must accomodate multiple security levels though secure login and my asp.net web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?
What are session and cookies?
Explain Session state management options in ASP.NET.
What is class and object in asp.net?
What is the procedure to handle the process request using mhpm events fired? : asp.net mvc
Is asp.net and .net same?