C# 常见的字节数组 byte[] 赋值方法

byte[] src ={1,2,3,4,5};
byte[] myByteArray = new byte[] { 0x01, 0x02, 0x03 };

猜你喜欢

转载自blog.csdn.net/dyxcome/article/details/84945535