C#数组的指定位置复制函数

1.

// 源数组 - 起始位置 -目的数组 - 起始位置 - 长度
System.Array.Copy(mcu_data, 2, read_mcu_data_whole, 0, mcu_data.Length - 4);//减去前后总共4个标记

原文地址:https://www.cnblogs.com/fx427103/p/4171909.html