List of Nullable Types in C#

Basically, all value types in C# can’t contain null. However, with nullable types features, these types can be nullable. These types are:

bool
byte
char
decimal
double
enum
float
int
long
sbyte
short
struct
uint
ulong
ushort

Leave a comment