Getting values from nullable types in C#

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