What is the Difference between CLR & CTS?
Answers were Sorted based on User's Feedback
Answer / manikandan
CLR is the common language runtime. which is the feature
makes the .net applications to run plantform independent
langauge interoperability.
CTS Common type system is the part of the CLR which enable
the Common Datatype system to All the .net languages.
it also defines conventions to convert objects from one
langauge to another
Is This Answer Correct ? | 37 Yes | 3 No |
Answer / anamika srivstava
CLR (comman anguage runtime) is the heart of the .net
framework. every runtime has responsibility to take care of
code at the time of execution.for ex vb has MSCRT60 AND
java has JVM and In .net CLR.
WHILE CTS ( comman type system) is subset of CLR .it
provide smooth comunication between two language.for exp in
vb .net has integer and c# has int ,CTS change both into
system.int32.
By Anamika Srivstava
Is This Answer Correct ? | 20 Yes | 2 No |
Answer / shilpi gulati
CLR is responsible for converting the actual code(language independent) into platform dependent that is msil code in order to run it on .net framework.it is the execution engine of .net framework.
CTS is a subset of CLR which takes are of making various language specific datatypes into a datatype which .net runtime understands.Ex- vb .net has integer and c# has int ,CTS changes both into system.int32 which is a datatype which .net framework understands and hence any language specific datatype is converted into .net specific datatype with the help of CTS.
Is This Answer Correct ? | 3 Yes | 3 No |
How can we store decimal data in .net?
What is the main purpose of garbage collector?
Why do you need Lock in Visual Basic?
What is an application domain? how they get created?
Name some of the keywords used in vb.net?
How to create Crystal Report in vb.net with coding
1 Answers A3Logics, Ascent, TCS,
What is the purpose of an Assembly?
What is jagged array in vb.net?
I want to reduce my CPU Usage when I am querying the Database for records. Now my Winform App(in VB.Net) suddenly Jumps to 100% CPU Usage when i query for records from sql server database. I want this Usage to be less. Any help is appreciated
sql satement for 2nd maximum value
What are the differences between c# and visual basic.net?
In vb.net how to connect crystal report?