[OT] my experience with nullable types (C#)

Walter Bright newshound2 at digitalmars.com
Sat May 3 19:01:30 UTC 2025


A null check should only be done when converting a nullable pointer to a 
non-nullable one. Doing a runtime null check before doing a dereference check is 
redundant, because the CPU will do it for you.


More information about the Digitalmars-d mailing list