凤凰求蛊
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);
}