Wednesday 25 June 2014

What is CTS and explain its role?

CTS(Common Type System)

  • As we know Managed code execution process .NET supports many programming languages.
  • Every programming Language has it own data types.
  • One programming Language can not understood other Programming Languages data types.
  • But CLR will execute all programming Languages code, this is possible because CLR will contain its own data types, which is common to all the programming languages 
  • At the time of compilation all languages specific data types are converted in to CLR's Data Type.
  • This Data Type System of CLR which is common to all programming languages of .Net is known as Common Type System.
  • This common type system is divided in to two categories:
    • Value Types
    • Reference Types

No comments:

Post a Comment