Using Casting null doesn't compile as inspiration, and from Eric Lippert's comment:
That demonstrates an interesting case. "uint x = (int)0;" would succeed even though int is not implicitly convertible to uint.
We know this doesn't work, because object can't be assigned to string:
string x = (object)null;
But this does, although intuitively it shouldn't:
uint x = (int)0;
Why does the compiler allow this case, when int isn't implicitly convertible to uint?
unit x = 0works.0is a signed int unless you specifyunit x = 0U. – vcsjones Jan 25 '12 at 19:110implicitly have as a constant expression then? Does the compiler just ignore the(int)explicit cast and treat0as auintconstant? – Yuck Jan 25 '12 at 19:12intconstant. However, it also knows that a non-negativeintconstant can safely be converted into auint. – Frédéric Hamidi Jan 25 '12 at 19:14