-
-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
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
create dll based on 3rd dll #93
Comments
Similar to #84 (continues #83). Try to debug at runtime. Mixed mode for debugger with attaching to process.
|
Also note, for stack problems you need to check required calling convention and try to start from basic signature without marshaling. Usually, I recommend only IntPtr because of more control. Well, it's my prefer. But in general, your Also try to isolate or catch something (about exceptions, start here #85). How about to reproduce an invoking from your trivial unmanaged side? C++ complete example see in related repo. |
@3F |
i have created a dll with 3rd library: Rabbitmq.Client(.dll)
if a function return something without facilities reference to rabbitmq . everything goes well,but when i use some function from rabbitmq.client.dll; the function can't not run as expect;
example code:
anybody can give me some tips ,why this occurs? how to solve this? many thanks!
The text was updated successfully, but these errors were encountered: