Dim a As Integer? = 18
Dim b As Integer? = 24
Dim c As Integer? = Nothing
Dim d As Integer?
d = a + c ' d = 18 + Nothing = Nothing
c = a + b ' c = 18 + 24 = 42
