原创 C#將兩個Int值變爲唯一值

將兩個Int值變爲唯一值 //代碼實現 public static long HashToLong(int n1, int n2) { long ret = n1; ret <<= 32; ret += n2;