Dim ret As Boolean? = If(flag, True, "ABC")
Dim ret As Boolean? = If(flag, True, Nothing)
Dim ret As Boolean? = If(flag, True, False)
If flag Then ret = True End If
bool? ret = flag ? true : null;