Guest User

Untitled

a guest
May 26th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace EnumLargeTest
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             ulong u;
  13.  
  14.             Console.WriteLine(1L << 56);
  15.  
  16.             //72057594037927936
  17.             Console.WriteLine(1L << 31);
  18.  
  19.             Console.ReadKey();
  20.         }
  21.     }
  22. }
Add Comment
Please, Sign In to add comment