unchecked int overflow

image_pdfimage_print
   
 
using System;
   
class IntegerOverFlowConst
{
    static void Main()
    {
        const ushort MAXUSHORT = 65535;
        const ushort ONE = 1;
   
        unchecked
        {
            ushort total = (short)MAXUSHORT + ONE;
        }
    }
}

    


This entry was posted in Data Types. Bookmark the permalink.