p 调用非托管 DLL 时获取标准输出?

发布于 2024-08-20 16:39:52 字数 288 浏览 3 评论 0原文

我有一个非托管 DLL,它将日志消息写入标准输出。我正在使用 WPF 应用程序中的 P 调用来调用此 DLL,并且我需要获取标准输出流日志。我尝试过 Console.SetOut,但这似乎只能捕获使用 Console.Write 等编写的信息。

有人有什么想法吗?我发现类似问题 在其他地方询问过,但他们没有答案。

I've got an unmanaged DLL that is writing log messages to standard output. I'm calling this DLL with P-invokes from a WPF app and I need to get the standard output stream log. I've tried Console.SetOut, but that only seems to capture information written using Console.Write, etc.

Anyone have any ideas? I've found similar questions asked elsewhere but they don't have answers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

怼怹恏 2024-08-27 16:39:52

由于您已经在调用 PInvoke,我想您不会介意额外调用 SetStdHandle。类似的线程位于此处 在 C# Windows 服务上重定向 stdout+stderr

Since you're already calling PInvoke, I guess you wont mind an extra call to SetStdHandle. A similar thread is here Redirect stdout+stderr on a C# Windows service

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