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.
The nullable type modifier (?) has been included in a variable declaration where As New has been specified. The following example causes this error:
Dim num? As New ExampleStructure
Error ID: BC33109
To correct this error
Remove the New keyword from the nullable variable declaration, as shown in the following example:
Dim num? As ExampleStructure