我有把一個字節數組轉換成一個整數C#轉換字節數組爲int總是相同數量
public int Encode(string input)
{
var bytes = Encoding.Unicode.GetBytes(input.ToLowerInvariant());
return BitConverter.ToInt64(bytes,0);
}
爲什麼此整數不對任何輸入字符串不同的方法?
例如
input = "http://www.google.com => 31525695615402088
和
input = "http://www.microsoft.com => 31525695615402088
? – rene 2011-12-29 22:50:41
你究竟想要完成什麼? – 2011-12-29 22:54:07