如何运行任何文件以及如何写入文件 - 在 C# 中 - Visual studio 2003?
我必须处理在 Visual-Studio 2003 (windows-mobile 5.0) 上编写的旧项目
,但我不知道如何执行此操作:
如何从程序运行任何文件(例如需要运行 prog2.exe)
如何向 MyText.txt 写入单词“TEST”
提前致谢
i have to work on old project that written on Visual-Studio 2003 (windows-mobile 5.0)
and i dont know how to do this:
how to run any file from the program (for example need to run prog2.exe)
how to write to MyText.txt the word "TEST"
thank in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,使用
Process.Start
。
对于第二个,在 Compact Framework 中,您需要:
我相信
Process.Start
在 Windows Mobile 中应该没问题...如果您可以升级到更高版本的 Compact Framework,您可以使用
File.WriteAllText
。For the first, use
Process.Start
.For the second, in the Compact Framework you'd need:
I believe
Process.Start
should be okay in Windows Mobile though...If you can upgrade to a later version of the Compact Framework, you could use
File.WriteAllText
.