CTS in .NET
What is CTS(Common Type
System).
CTS stands for Common Type System.
When we compile code in C# or VB.NET,
the datatype of these languages gets
compiled to CTS.
It helps us to allow programs written in
different programming languages to
easily share the information
It helps in smooth communication.
For example: Variable declared in C# has
int datatype and VB.NET has Integer
datatype, finally after compilation it uses
the same variable Int32 from CTS.

Explain CTS in detail.

  • 1.
    CTS in .NET Whatis CTS(Common Type System).
  • 2.
    CTS stands forCommon Type System. When we compile code in C# or VB.NET, the datatype of these languages gets compiled to CTS. It helps us to allow programs written in different programming languages to easily share the information
  • 3.
    It helps insmooth communication. For example: Variable declared in C# has int datatype and VB.NET has Integer datatype, finally after compilation it uses the same variable Int32 from CTS.