March 2016
Intermediate to advanced
550 pages
10h 57m
English
int value by 0?A DivideByZeroException is thrown when dividing an integer or decimal.
double value by 0?The double contains a special value of Infinity. Instances of floating-point numbers can have special values: NaN (not a number), PositiveInfinity, and NegativeInfinity.
int value that is set to a value beyond its range?It will loop unless you wrap the statement in a checked block in which case an OverflowException will be thrown.
x = y++; and x = ++y;?In x = y++;, y will be assigned to x and then y will be incremented, and in x = ++y;, y will ...
Read now
Unlock full access