Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Only value types, including structures, can be declared nullable.
' Valid.
Dim n? As Integer
Dim m As Integer?
' Not valid.
' Dim p? As Object
' Dim q As Nullable(Of Object)
Error ID: BC33101
To correct this error
Remove the '?' or Nullable.
Use a value data type.