1. 首页
  2. 数据库
  3. 其它
  4. C# 调用C++ DLL的类型转换

C# 调用C++ DLL的类型转换

上传者: 2020-12-31 09:30:48上传 PDF文件 36.99KB 热度 21次
//C#调用C++的DLL搜集整理的所有数据类型转换方式,可能会有重复或者多种方案,自己多测试 //c++:HANDLE(void *) —- c#:System.IntPtr //c++:Byte(unsigned char) —- c#:System.Byte //c++:SHORT(short) —- c#:System.Int16 //c++:WORD(unsigned short) —- c#:System.UInt16 //c++:INT(int) —- c#:System.Int16 //c++:INT(int) —- c#:System.Int32 //c++:U
用户评论