Author : HASSAN MD TAREQ | Updated : 2021/03/22
What is nullable type?
// Nullable types are VALUE types that can take null as value. The default value of a nullable type is null.
int? x = null; // no value
// Nullable types are VALUE types that can take null as value. The default value of a nullable type is null.
int? x = null; // no value