Простые типы / Типы с "пустым" значением

using System;

int? n1 = 42;
var value = n1.Value;
//value is 42, Int

Console.WriteLine(value);