C#操作高低位
2021-06-02 19:04
标签:tco new pre 位运算 converter byte oar 操作 int 1.int32占4个字节 2.int16占2个字节: 3.十六进制(byte[])转int类型 C#操作高低位 标签:tco new pre 位运算 converter byte oar 操作 int 原文地址:https://www.cnblogs.com/SurroundSea/p/10922885.htmlint data=2147483647;
byte[] byte4 =new byte[4];
byte4 = BitConverter.GetBytes(data);//结果逆序
int data=32767;
byte high=Convert.ToByte((data >> 8) & 0x00ff); //位运算:右移8位
byte low=Convert.ToByte(data & 0x00ff); //去掉高位
byte[] bytes={0x00,0x00,0x00,0x00};//逆序转换
int data=BitConverter.ToInt32(bytes.Reverse().ToArray(),0);