What is The Role of CTS in .Net Framework.

'CTS' is an abbreviation of Common Type System and it is used to handle translation of programming-language data types into .NET compatible (MSIL) data types.

Microsoft Intermediate Language (MSIL)

The CTS provides every language running on the .NET platform with a base set of data types. While the CTS is responsible for defining the types that can be used across the .NET languages, most languages choose to implement aliases to those types. For example, a four-byte integer value is represented by the CTS type System.Int32. C# defines an alias for this called type called int.

Every thing in the CTS is an object. Not only is everything an object but even more importantly, all objects implicitly derive from a single base class defined as a part of the CTS. This base class is called System.Object. The designers of CTS were faced with the task of creating a type system in which every thing is an object, but the type system works in an efficient manner , when applicable. Their solution was to separate the CTS types into two categories:

  1. VALUE TYPES ( assigning actual values to the variables)
  2. REFERENCE TYPES (referencing to point to the address of the object)

See the following links for details :

http://www.programmersheaven.com/2/FAQ-DOTNET-Framework-Explanation

http://www.dotnetspider.com/forum/38904-What-Exact-role-CLS-CTS-CLR.aspx

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.