What is CTS, CLS and CLR ?
Answer Posted / versha
CLR
this is common language runtime.the code which is in
environment of clr is called managed code.every language
has runtime in case of .net there is CLR.so that that has
some responsibilites that is to tack care of the execution
of code
other responsibilites
garbage collection-in that it remove the object which are
not refered for long time.using Idisposable interface with
dispose method
Jit compiler also convert IT to native code
In that include exception handling.etc
Cls
common language spefication
thsi is guideline that to communicate smoothly with other
CTS
common type system
this is used to communicate with other language.
example in vb we have int and in c++ we have long so that
in one case they are not compatiable with each other so
that CTS palys important role with using System.int32
| Is This Answer Correct ? | 117 Yes | 36 No |
Post New Answer View All Answers
What is a gridview in asp.net?
When Cookies are expired in ASP.NET?
What are client activated objects and server activated objects?
In Code-Behind class which kind of code (server or client) is found ?
How can I configure asp.net applications that are running on a remote machine?
What are html helpers in asp.net?
If I have more than one version of one assemblies, then how will I use old version (how/where to specify version number?) In my application?
What is special types forms
What is runat?
Explain what is an assembly?
Mention the namespace that is used to include .net data provider for sql server in .net code?
Explain the use of errorprovider control in .net?
If you have an application with multiple security levels though secure login and my ASP.NET web appplication is spanned across three web-servers by using round-robbin load balancing. Explain which is the best approach to maintain login-in state for the users?
What is session object? Describe in detail.
What is Partial PostBack in ASP.NET?