C# Marshal.Copy实现非托管指针和数组之间的转换
挑战
VectorFileIO套件里面 读写文件是 IntPtr类型的指针操作。 原始数据是Int32数组(Int[采样点,通道]),要写入文件。读出文件要转换成反映的物理变量是采集的double波形 (double[通道,采样点])。
写文件
//初始化缓存指针对应的非托管内存
IntPtr IntPtr变量 = Marshal.AllocHGlobal(缓存Byte长度);
采集循环
{
//讲采集得到的Int一维数组拷贝到缓存
Marshal.Copy(采集一维数组, 0, IntPtr变量, 数组sample长度);
//将缓存写入矢量文件
vectorFile.Write(IntPtr变量, 缓存Byte长度);
}
//释放缓存
Marshal.FreeHGlobal(IntPtr变量);
//关闭文件
vectorFile.Close();
读文件
//初始化缓存指针对应的非托管内存
IntPtr IntPtr变量 = Marshal.AllocHGlobal(缓存Byte长度);
读文件循环
{
//矢量文件读入缓存
vectorFile.read(IntPtr变量, 缓存Byte长度);
//缓存拷贝入一维数组, 数组长度=缓存Byte长度 /4 (因为4 bytes per int32)
Marshal.Copy(IntPtr变量, 一维数组, 0, 数组sample长度);
//由Int32 一维数组 转换为2维 double数组使用
}
//释放缓存
Marshal.FreeHGlobal(IntPtr变量);
//关闭文件
vectorFile.Close();
背景知识
微软C#关于Marshal.Copy的多态解释
https://docs.microsoft.com/en-us/dotnet/api/system.runtime.interopservices.marshal.copy?view=netframework-4.8
我百度、必应查到的都不太对。所以