I ran into this today and have no idea why the C# compiler isn't throwing an error.
Int32 x = 1;
if (x == null)
{
Console.WriteLine("What the?");
}
I'm confused as to how x could ever possibly be null. Especially since this assignment definitely throws a compiler error:
Int32 x = null;
Is it possible that x could become null, did Microsoft just decide to not put this check into the compiler, or was it missed completely?
Update: After messing with the code to write this article, suddenly the compiler came up with a warning that the expression would never be true. Now I'm really lost. I put the object into a class and now the warning has gone away but left with the question, can a value type end up being null.
public class Test
{
public DateTime ADate = DateTime.Now;
public Test ()
{
Test test = new Test();
if (test.ADate == null)
{
Console.WriteLine("What the?");
}
}
}
if (1 == 2)as well. It's not the compiler's job to perform code path analysis; that's what static analysis tools and unit tests are for. – Aaronaught Dec 29 '09 at 0:26int, the compiler generates nice warnings. For the simple types the==operator is defined by the C# language specification. For other (not simple type) structs, the compiler forgets to emit a warning. See Wrong compiler warning when comparing struct to null for details. For structs that are not simple types, the==operator must be overloaded by anopeartor ==method which is a member of the struct (otherwise no==is allowed). – Jeppe Stig Nielsen Jan 3 at 13:29