According to Reflector, the IL from your code snippet decompiles into:
Public Shared Sub Main()
Dim a As Integer? = 10
Dim b As Integer? = Nothing
Dim c As Integer = (IIf(a.HasValue, a.GetValueOrDefault, 0) + IIf(b.HasValue, b.GetValueOrDefault, 0))
c = (a.GetValueOrDefault(0) + b.GetValueOrDefault(0))
End Sub
[EDIT] And then looking at the Reflected functions GetValueOrDefault()
and GetValueOrDefault(T defaultValue)
gives the following (respectively):
Public Function GetValueOrDefault() As T
Return Me.value
End Function
and
Public Function GetValueOrDefault(ByVal defaultValue As T) As T
If Not Me.HasValue Then
Return defaultValue
End If
Return Me.value
End Function
Indicating either form does effectively exactly the same thing