let retVal =
if reader.Read() then
(reader.GetString(0), getBytesData reader 1, reader.GetDateTime(2))
else
null
F# don't allow null to returned
How can i have value return as a tuple or a null?
F# don't allow null to returned How can i have value return as a tuple or a null? |
|||
|
|
|
It is not that F# does not allow you to return null. It is because then part and else part have different types. You can use Option type.
when you use
|
|||
|
|
|
To add some additional information to the Yin Zhu's answer, the situation with
|
|||
|
|