Goodbye, NullReferenceException: Nullable Operators and References

from blog Just Some Code, | ↗ original
In the previous post of this series, we covered two ideas to avoid the NullReferenceException: we should check for null before accessing the members of an object and check the input parameters of our methods. Let’s see some new C# operators to simplify null checking and a new feature to better signal possible null references. 1. C# Nullable...