1
我有一個包裝庫,它使用調用非託管C++的C++/cli。 我從c#調用這個,並希望作爲ref傳遞一個int數。C#到C++/cli unamanged C++參考
public void MethodA()
{
int result = 0;
MethodCLI(ref result);
}
public void MethodCLI(int result)
{
//Singature of the method is
// UnmanagedC++(int* result);
UnmanagedC++(result);
}
我該怎麼做?提前
謝謝。那就是訣竅 – pantonis