We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
错误位置: static auto Invoke(const std::string& funcName, Args... args) -> Return { if (address_[funcName] != nullptr) { try { return reinterpret_cast<Return(UNITY_CALLING_CONVENTION*)(Args...)>(address_[funcName])(args...); //这里发生错误,funcName =“”mono_compile_method” 无误,args 无误,报错原因:0x00007FFBFEA11A9D (ntdll.dll)处引发的异常: 0xC0000005: 写入位置 0x0000000000000120 时发生访问冲突。 } catch (...) { return Return(); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
错误位置:
static auto Invoke(const std::string& funcName, Args... args) -> Return {
if (address_[funcName] != nullptr) {
try {
return reinterpret_cast<Return(UNITY_CALLING_CONVENTION*)(Args...)>(address_[funcName])(args...); //这里发生错误,funcName =“”mono_compile_method” 无误,args 无误,报错原因:0x00007FFBFEA11A9D (ntdll.dll)处引发的异常: 0xC0000005: 写入位置 0x0000000000000120 时发生访问冲突。
}
catch (...) {
return Return();
}
}
The text was updated successfully, but these errors were encountered: