Numeric Types: Checked Conversions

image_pdfimage_print
   
  

using System;

public class CheckedConversions
{
    public static void Main()
    {
        checked
        {
            uint value1 = 312;
            byte value2 = (byte) value1;
            Console.WriteLine("Value: {0}", value2);
        }
    }
}

           
         
    
     


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