int n == 0;
if (n == null)
{
Console.WriteLine("......");
}
Is it true that the result of expression (n == null
) is always false
since
a value of type int
is never equal to null
of type int?
(see warning below)
Warning CS0472 The result of the expression is always 'false' since a value of type 'int' is never equal to 'null' of type 'int?'
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…