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
explain code with datachaching with example
What is a query string in a url?
What are app services?
How to use push notification?
Give an example of what might be best suited to place in the application_start and session_start subroutines?
What is virtual directory in asp.net?
How does u call and execute a sp in .net?
How long should a session id be?
What is viewstate? In which event of the page life cycle, is the viewstate available?
What is the concepts of globalization and localization in .net?
How does u get record no from 5 to 15 from a dataset of 100 records?
Explain security types in asp.net?
What is the question mark in a url?
Can I read the hard disk serial # of the client computer using asp.net?
Explain the use of resource manager class in .net.