GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Microsoft  >  DataGrid

 Print  |  
Question:  what is the main differences between CTS , CLS



November 11, 2006 00:00:10 #1
 PavanKumar   Member Since: Visitor    Total Comments: N/A 

RE: what is the main differences between CTS , CLS
 
Hi,CTS And CLS are the major components through which the interoperability is acheived in .Net Framework. CLS ( Common Language Specification) specifies some set of rules for all the .Net Compilers. In this process it makes use of CTS(Common Type System) which is a subset OF CLS.CTS consists of types ( both Value-Type And Referrence Types). To make clear about the use of CTS: If we are declaring a INTEGER Type in VB.NetDim I As Integer If we are declaring the same INTEGER Type in C#.Netint i;both of these are converted to the form i as int32 so, irrespective of the language written in they are convereted to Intermediate Language which CLR can read and understand.
     

 

Back To Question