Welcome to Shaun Luttin's public notebook. It contains rough, practical notes. The guiding idea is that, despite what marketing tells us, there are no experts at anything. Sharing our half-baked ideas helps everyone. We're all just muddling thru. Find out more about our work at bigfont.ca.

Contents tagged with null

  • C# Nullable Type

    Tags: c#, .NET, null

    How does it work? it is a struct that wraps a struct if the underlying struct has a value, then HasValue is true and Value returns the value. if the underlying struct lacks a value, then … more