1. int: 可以通过 | 和 << 的方法组合 int i = (int)(date[0]<<24|date[1]<<16|date[2]<<8|date[3]);
2.float :
float i = 123.444F;
byte[] bts = BitConverter.GetBytes(i); //将float转换成字节数组
float j = BitConverter.ToSingle(bts,0); //从字节数组转换成float
或
int ssr =111;
byte[] date = System.Text.Encoding.ASCII.GetBytes(ssr.ToString().ToCharArray());
float d =float.Parse(System.Text.Encoding.ASCII.GetString(date));