int? A = empty;
//Check whether it is empty.
if (a.HasValue)
{
//Here a is not empty.
int b = a . Value
}
other
//Here a is empty.