SlideShare a Scribd company logo
2
Most read
3
Most read
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.

More Related Content

PDF
Introduction: Databases and Database Users
PPT
Database Management System Introduction
PPTX
Chapter-7 Relational Calculus
PPTX
Data mining , Knowledge Discovery Process, Classification
PPT
14. Query Optimization in DBMS
PDF
Data warehouse architecture
PPTX
STRUCTURE OF SQL QUERIES
Introduction: Databases and Database Users
Database Management System Introduction
Chapter-7 Relational Calculus
Data mining , Knowledge Discovery Process, Classification
14. Query Optimization in DBMS
Data warehouse architecture
STRUCTURE OF SQL QUERIES

What's hot (20)

PPTX
Structure of dbms
PPS
Database Design Slide 1
PPTX
Attribute oriented analysis
PDF
Advanced Database System
PPTX
PPTX
PPTX
3 Level Architecture
PPT
Entity Relationship Diagram
PPTX
Transaction states and properties
PPT
Distributed database management systems
PPT
Normalisation - 2nd normal form
PPTX
Database Management Systems 2
PPT
11. Storage and File Structure in DBMS
PPTX
Dbms database models
PDF
Chapter 2 Relational Data Model-part1
PPTX
Entity (types, attibute types)
PPTX
Referential integrity
PPTX
Relational Database Design
PPTX
Assemblies
PPTX
Nested queries in database
Structure of dbms
Database Design Slide 1
Attribute oriented analysis
Advanced Database System
3 Level Architecture
Entity Relationship Diagram
Transaction states and properties
Distributed database management systems
Normalisation - 2nd normal form
Database Management Systems 2
11. Storage and File Structure in DBMS
Dbms database models
Chapter 2 Relational Data Model-part1
Entity (types, attibute types)
Referential integrity
Relational Database Design
Assemblies
Nested queries in database
Ad

More from Questpond (8)

PPTX
Most asked JAVA Interview Questions & Answers.
PPTX
30 C# Interview Questions and Answers
PPTX
OOP interview questions & answers.
PPTX
Explain Delegates step by step.
PPTX
AOT(Ahead Of Time)
PPTX
What is CLS in .NET programming.
PPTX
Learn .NET step by step :- What is IL code in .NET?
PPTX
What is Higher Language and Lower Language in programming.
Most asked JAVA Interview Questions & Answers.
30 C# Interview Questions and Answers
OOP interview questions & answers.
Explain Delegates step by step.
AOT(Ahead Of Time)
What is CLS in .NET programming.
Learn .NET step by step :- What is IL code in .NET?
What is Higher Language and Lower Language in programming.
Ad

Recently uploaded (20)

PPTX
Introduction to Building Materials
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
DOC
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
PDF
David L Page_DCI Research Study Journey_how Methodology can inform one's prac...
PDF
LDMMIA Reiki Yoga Finals Review Spring Summer
PPTX
Share_Module_2_Power_conflict_and_negotiation.pptx
PDF
1_English_Language_Set_2.pdf probationary
PDF
Indian roads congress 037 - 2012 Flexible pavement
PDF
My India Quiz Book_20210205121199924.pdf
PPTX
Introduction to pro and eukaryotes and differences.pptx
PPTX
TNA_Presentation-1-Final(SAVE)) (1).pptx
PPTX
B.Sc. DS Unit 2 Software Engineering.pptx
PDF
IGGE1 Understanding the Self1234567891011
PPTX
Computer Architecture Input Output Memory.pptx
PDF
advance database management system book.pdf
PDF
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 1)
PPTX
Virtual and Augmented Reality in Current Scenario
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
PDF
Paper A Mock Exam 9_ Attempt review.pdf.
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
Introduction to Building Materials
202450812 BayCHI UCSC-SV 20250812 v17.pptx
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
David L Page_DCI Research Study Journey_how Methodology can inform one's prac...
LDMMIA Reiki Yoga Finals Review Spring Summer
Share_Module_2_Power_conflict_and_negotiation.pptx
1_English_Language_Set_2.pdf probationary
Indian roads congress 037 - 2012 Flexible pavement
My India Quiz Book_20210205121199924.pdf
Introduction to pro and eukaryotes and differences.pptx
TNA_Presentation-1-Final(SAVE)) (1).pptx
B.Sc. DS Unit 2 Software Engineering.pptx
IGGE1 Understanding the Self1234567891011
Computer Architecture Input Output Memory.pptx
advance database management system book.pdf
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 1)
Virtual and Augmented Reality in Current Scenario
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
Paper A Mock Exam 9_ Attempt review.pdf.
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape

Explain CTS in detail.

  • 1. CTS in .NET What is CTS(Common Type System).
  • 2. 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
  • 3. 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.