Skip to main content
Skill

The .NET Type System

The .NET Type System provides a unified framework of data types for defining and working with data in C# applications. It classifies all data into value types, which contain their data directly, and reference types, which store references to data located elsewhere in memory. This fundamental classification affects everything from memory layout to how equality comparisons work.