What does null! statement mean?

The key to understanding what null! means is understanding the ! operator. You may have used it before as the “not” operator. However, since C# 8.0 and its new “nullable-reference-types” feature, the operator got a second meaning. It can be used on a type to control Nullability, it is then called the “Null Forgiving Operator” … Read more