本文介绍了在C#中将字节转换为二进制字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在c#中,我将byte
转换为binary
,实际答案是00111111
,但是给出的结果是111111
.现在,我真的需要显示前面的2 0.谁能告诉我该怎么做?
In c# I am converting a byte
to binary
, the actual answer is 00111111
but the result being given is 111111
. Now I really need to display even the 2 0s in front. Can anyone tell me how to do this?
我正在使用:
Convert.ToString(byteArray[20],2)
并且字节值为63
推荐答案
只需将代码更改为:
string yourByteString = Convert.ToString(byteArray[20], 2).PadLeft(8, '0');
// produces "00111111"
这篇关于在C#中将字节转换为二进制字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!