Don't think I've seen this answer but you can type cast it.
int? foo = SomeNullableMethod(); int bar += (int)foo
int? foo = SomeNullableMethod();
int bar += (int)foo