p 调用非托管 DLL 时获取标准输出?
我有一个非托管 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您已经在调用 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