Categorie

Description

Types valeurs

Types simples

Signed integral: sbyte, short, int, long

Unsigned integral: byte, ushort, uint, ulong

Unicode characters: char

IEEE floating point: float, double

High-precision decimal: decimal

Boolean: bool

[[Énumérations]]

User-defined types of the form enum E {...}

[[Structures]]

User-defined types of the form struct S {...}

[[Nullables]]

Extensions of all other value types with a null value

Types références

[[Classes]]

Ultimate base class of all other types: object

Unicode strings: string

User-defined types of the form class C {...}

[[Interfaces]]

User-defined types of the form interface I {...}

[[Tableaux]]

Single- and multi-dimensional, for example, int[] and int[,]

[[Délégués]]

User-defined types of the form e.g. delegate int D(...)