如题,请问改如何解决呢?在线等,感谢。
2 回答
凤凰求蛊
TA贡献1825条经验 获得超4个赞
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 关注
- 957 浏览
添加回答
举报
0/150
提交
取消
