Guest User

Untitled

a guest
Jun 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public long MakeLong(int left, int right) {
  2. long res = left;
  3. res = (res << 32);
  4. res = res | (long)right;
  5. return res;
  6. }
  7.  
  8. (long)(((long)i1 << 32) | (long)i2)
  9.  
  10. return (long)( high * uint.MaxValue ) + low;
  11.  
  12. ((Int64) a << 32 | b)
Add Comment
Please, Sign In to add comment