top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is "Common Type System" (CTS) in context of .Net?

0 votes
237 views
What is "Common Type System" (CTS) in context of .Net?
posted Dec 17, 2015 by Sathyasree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

CTS defines all of the basic types that can be used in the .NET Framework and the operations performed on those type.
All this time we have been talking about language interoperability, and .NET Class Framework. None of this is possible without all the language sharing the same data types. What this means is that an int should mean the same in VB, VC++, C# and all other .NET compliant languages. This is achieved through introduction of Common Type System (CTS).

answer Dec 17, 2015 by Shivaranjini
...