Share via


Types (C# Reference) 

The C# typing system contains the following categories:

Variables of the value types store data, while those of the reference types store references to the actual data. Reference types are also referred to as objects. Pointer types can be used only in unsafe mode.

It is possible to convert a value type to a reference type, and back again to value types, by using boxing and unboxing. With the exception of a boxed value types, you cannot convert a reference type to a value type.

This section also introduces void.

Value types are also nullable, which means they can store an addition non-value state. For more information, see Nullable Types.

See Also

Reference

C# Keywords
Casting (C# Programming Guide)
Data Types (C# Programming Guide)

Concepts

C# Programming Guide

Other Resources

C# Reference
Types Reference Tables (C# Reference)