C# is null
Since C# gives you the ability to change the behavior of built-in operator, it's possible the `if (x == null)` syntax doesn't actually do what you think it does.
To combat this, you can use `is null` or `is not null` to see if something truly is null.
Comments
Post a Comment