日期:2014-05-18 浏览次数:21031 次
string str = "0A AA"; byte[] bytes = new byte[4]; string[] arr = str.Split(' '); for (int i = 0; i < arr.Length; i++) { bytes[i] = Convert.ToByte(arr[i], 16); } int value = BitConverter.ToInt32(bytes, 0);