What are clr?cts?cls?
Answer Posted / raj
CLR is .NET runtime execution environment. It manages code
verification, code-based security, code execution, memory
management through Garbage Collector. All the code that
runs under the control of CLR is termed as managed code.
Source code is first compiled to MSIL (microsoft
intermediate language) by JIT. Portion of the code is
executed as it is called by JIT compiler. Not all the code
gets executed for the first time. IL code is then converted
to native machine code.
CLS works with CTS to support language interoperability
that target .net. CTS defines predefined datatypes. CLS is
set of standards that all languages target .net must
support. all code must be CLS-compliant code to be able to
interoperable.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
How do you do client-side validation in .net? How to disable validator control by client side javascript?
What are strong names?
What are the types of validation in asp net?
Is asp.net outdated?
Where is the view state data stored in asp net?
What is data caching?
Hi All, Im an MCA holder with 3+ years of experience in asp.net. Now i want to move to some good government job. I have no idea about different categories of exams held & which one can be applicable for my education background. I have done B.A with MCA. Please help me out with your valuable suggestions. I would be very grateful. Thanks Anuj
What’s difference between “optimistic” and “pessimistic” locking?
Why do I get error message "could not load type" whenever I browse to my asp.net web site?
what is meant by sitemapnode ?
What is a page life cycle?
What is directive in asp net?
I am trying to implement sorting facility from client side code in GridView Control. So how can I fill up an Array inside client side code (using JavaScript), i want to assign my DataSet object declared and filled up on Server side(in code behind) to the array (on client side)
Can you explain autopostback?
What is boxing and unboxing in asp.net?