Friday, April 19, 2024 05:31

Posts Tagged ‘nullable types’

Nullable variable types

Thursday, December 29th, 2016

You may have noticed already that some variables can have a default value of nullwhile others can’t. Well, that is not entirely true. Nullable variable types refers to exactly this situation: creating a specific wrapper around the value types (types that cannot be null), that allow them to store data with a null value.… Read more


Follow the white rabbit