gpt4 book ai didi

c# - 从 int 获取单字节

转载 作者:太空宇宙 更新时间:2023-11-03 18:32:52 26 4
gpt4 key购买 nike

我得到了一个整数。例如 5630(十进制)。二进制数是:

00000000 00000000 00010101 11111110

我想获取十进制的第二个字节 (00010101)。我如何获得它?

最佳答案

您可以使用 BitConverter.GetBytes() :

int intValue = 5630;
byte[] intBytes = BitConverter.GetBytes(intValue);
byte result = intBytes[1]; // second least-significant byte

或者只是向右移动 8 位并转换为一个字节(截断左边的位):

((byte)(intValue >> 8))

关于c# - 从 int 获取单字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19821262/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com