监视 DLL 的运行时行为
我正在使用 C# 中的 VC++ 自制的 dll。
我想问一下,有什么方法可以监控dll的运行时性能。 例如,一旦 C# 代码调用了 dll 并且加载了它,我可以监视 dll 的行为吗?
我正处于开发阶段,独立运行时 dll 代码逻辑运行完美,但是,当我从 C# 调用它时,它的行为很尴尬。于是,就想搞清楚。
谢谢
I am using a self made dll using VC++ in C#.
I wanted to ask, is there any way by which I could monitor the run time performance the dll.
Like, once the C# code has made a call to the dll and once when it is loaded, can I monitor the behavior of the dll?
I am in development phase and the dll code-logic when run independently, runs perfect, however, when I call it from C#, it behaves awkwardly. So, wanted to figure out.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过通过将 DLL 附加到正在运行的 C# 进程来调试它?通过:调试->“附加到进程”,甚至调试->“开始调试”,然后调用 c# 应用程序。
或者编写一个快速的 C++ 应用程序来测试实际的 DLL(而不仅仅是逻辑),从而消除 C# 作为它不起作用的原因。
Have you tried debugging your DLL by attaching it to the running C# process? Via: Debug->"Attach to Process", or even Debug->"Start Debugging" then calling the c# app.
Or writing a quick C++ app to test the actual DLL (not just the logic), thus eliminating C# as the reason it doesn't work.