gpt4 book ai didi

c# - 从位串转换为整数

转载 作者:太空狗 更新时间:2023-10-30 00:34:30 25 4
gpt4 key购买 nike

我需要这样的功能

int GetIntegerFromBinaryString(string binary, int bitCount)

如果 binary = "01111111"和 bitCount = 8,它应该返回 127

如果 binary = "10000000"和 bitCount = 8,它应该返回 -128

数字以 2 的补码形式存储。我该怎么做。是否有任何内置函数可以帮助我无需手动计算。

最佳答案

在字符串前添加 0 或 1 以组成 bitCount 并执行int number = Convert.ToInt16("11111111"+"10000000", 2);

关于c# - 从位串转换为整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7395836/

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