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.
Value types and structures can be declared nullable.
Dim a? As Integer
Dim b As Integer?
However, you cannot use the nullable declaration in combination with type inference. The following examples cause this error.
' Not valid.
' Dim c? = 10
' Dim d? = a
Error ID: BC36629
To correct this error
- Use an
Asclause to declare the variable as a nullable value type.
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.