Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. if value.HasValue then ht.Add(key, value.Value)
  2.  
  3. let nullableOption (value: Nullable<'a>) =
  4. if value.HasValue then (Some value.Value) else None
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement