B
beginwithl
hi
1) What does null value represent in nullable types – an unknown value
or non-existing/unassigned/undefined ( here I assume non-existing/
unassigned/undefined essentially mean the same thing ) value?
2) I understand nullable types are useful when dealing with databases,
but are they also useful in some other situation?
* One example where they might prove useful would be if you wanted a
variable to have no value due to not yet knowing what value the
variable should hold.
3) Nullable types have a property named Value, which basically gets a
value which nullable variable holds. But why would you ever need to
use Value property instead of “directly” using nullable variable?
thank you
1) What does null value represent in nullable types – an unknown value
or non-existing/unassigned/undefined ( here I assume non-existing/
unassigned/undefined essentially mean the same thing ) value?
2) I understand nullable types are useful when dealing with databases,
but are they also useful in some other situation?
* One example where they might prove useful would be if you wanted a
variable to have no value due to not yet knowing what value the
variable should hold.
3) Nullable types have a property named Value, which basically gets a
value which nullable variable holds. But why would you ever need to
use Value property instead of “directly” using nullable variable?
thank you