unchecked int overflow : checked unchecked : Data Types C# Source Code


Custom Search

C# Source Code » Data Types » checked unchecked »

 

unchecked int overflow








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

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Data Types
» checked unchecked