Converting a Integer? to a Integer (converting a Nullable(Of Type) To a Type)

In order to convert a nullable Integer to a Interger, all that needs to be done is to call the GetValueOrDefault function of the nullable Type.

Dim intNullable As Integer? = Nothing
Dim int As Integer = intNullable.GetValueOrDefault()