如题,请问改如何解决呢?在线等,感谢。
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); }
- 2 回答
- 0 关注
- 1481 浏览
添加回答
举报
0/150
提交
取消