监视 DLL 的运行时行为

发布于 2024-09-17 18:59:20 字数 189 浏览 4 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怀念你的温柔 2024-09-24 18:59:20

您是否尝试过通过将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文