为了账号安全,请及时绑定邮箱和手机立即绑定

如何将Byte[] 内容复制到List<byte>中呢?或者复制到ArrayList

如何将Byte[] 内容复制到List<byte>中呢?或者复制到ArrayList

拉丁的传说 2018-11-28 14:08:40
  如题,请问改如何解决呢?在线等,感谢。
查看完整描述

2 回答

?
慕田峪7331174

TA贡献1828条经验 获得超13个赞

Byte[] bytes= { 0, 0, 0, 0, 0, 0, 50, 50 };

//复制到List<byte>中
List<Byte> lbyte = new List<Byte>();
foreach( byte b in bytes)
{
    lbyte.Add(b);
}

//复制到ArrayList中
ArrayList abyte = new ArrayList();
foreach (byte b in bytes)
{
        abyte.Add(b);
}


查看完整回答
反对 回复 2018-12-02
  • 2 回答
  • 0 关注
  • 1481 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信