C#调用C++类库的几种方式
摘要:
1、 直接调用C++类库中的公共方法 使用DllImport特性对方法进行调用,比如一个C++类库SampleCppWrapper.dll中的公共方法: extern "C" __declspec(dllexport) int __stdcall Add(int n1, int n2); __std 阅读全文
posted @ 2023-11-25 21:44 jack_Meng 阅读(1337) 评论(0) 推荐(0) 编辑