Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
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