Допустим есть некая либа на c++ с функцией:
extern "C" int __declspec(dllexport) wtf(int a, int b) {
return a/b*100;
}
[System.Runtime.InteropServices.DllImport("wtf")]
public static extern int wtf(int a, int b);
Допустим есть некая либа на c++ с функцией:
extern "C" int __declspec(dllexport) wtf(int a, int b) {
return a/b*100;
}
[System.Runtime.InteropServices.DllImport("wtf")]
public static extern int wtf(int a, int b);