将标准输出/输入/错误重定向到文本框或从文本框重定向
我正在制作一个 VB.NET 应用程序,可用于编辑、编译和运行 C 程序。我使用了 Process.StartInfo.RedirectStandardOutput 属性。但我无法将其重定向到文本框,因为它不是字符串类型。
如何将 cl.exe 进程的输出重定向到我的文本框?
I was making a VB.NET application that can be used to edit, compile and run C programs. I used the Process.StartInfo.RedirectStandardOutput property. But I'm unable to redirect it to a textbox, since it is not of the string type.
How do I redirect the output coming from the cl.exe process to my textbox?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要重定向到 TextBox 的 Text 属性。例如:
You need to redirect into the TextBox's Text property. For example: