checked and OverflowException

checked and OverflowException

@csharp_1001_notes
l = 0x2200000005;     // 146028888069
i = (int)l;           // 5
i = checked((int)l);  // Throws OverflowException


Report Page