Home »

What is a CTS?

Question ListCategory: VB.NETWhat is a CTS?
denielshakespeare5 author asked 9 years ago
1 Answers
jamessmith05 author answered 8 years ago

In order that two language communicate smoothly CLR has CTS (Common Type System).Example in VB you have “Integer” and in C++ you have “long” these datatypes are not compatible so the interfacing between them is very complicated. In order to able that two different languages can communicate Microsoft introduced Common Type System. So “Integer” datatype in VB6 and “int” datatype in C++ will convert it to System.int32 which is datatype of CTS. CLS which is covered in the coming question is subset of CTS.

Please login or Register to Submit Answer