C# NetCDF文件64位读取
2021-02-15 06:20
标签:调试 http com 使用 操作 java 语言 网上 版本 C# NetCDF文件64位读取 标签:调试 http com 使用 操作 java 语言 网上 版本 原文地址:http://blog.51cto.com/speciallst/2070734
这是64位的写法,将较长的size用long方式标示
[DllImport("netcdf.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern int nc_open(string path, int mode, long bsize, out int ncidp);
这是32位的写法
[DllImport("netcdf.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern int nc_open(string path, int mode, int bsize, out int ncidp);
刚开发的时候,用64位的dll,按照32位的写法,数据一直不能出来,最后,联合调试netcdf的源码才发现此问题,最后能顺利读出来文件。
下一篇:Win7如何显示文件后缀