2
๐ Dealing with Nothing in C# - Nullable
(blog.botond.online)
A community about the C# programming language
Getting started
Useful resources
IDEs and code editors
Tools
Rules
Related communities
I've found C# nullable types quite frustrating, because nullable generics don't work properly when they can be instantiated with both value types and reference types.
It feels like a very hacky approximation of an option type, which we are now probably stuck with. Compared to all the other amazing features they've added, that one felt a bit half baked.
To be honest I feel the same way about it now.