如何运行任何文件以及如何写入文件 - 在 C# 中 - Visual studio 2003?

发布于 2024-11-04 08:09:48 字数 200 浏览 2 评论 0原文

我必须处理在 Visual-Studio 2003 (windows-mobile 5.0) 上编写的旧项目

,但我不知道如何执行此操作:

  1. 如何从程序运行任何文件(例如需要运行 prog2.exe)

  2. 如何向 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:

  1. how to run any file from the program (for example need to run prog2.exe)

  2. how to write to MyText.txt the word "TEST"

thank in advance

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

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

发布评论

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

评论(1

月下客 2024-11-11 08:09:48

首先,使用 Process.Start

对于第二个,在 Compact Framework 中,您需要:

using (TextWriter writer = new TextWriter("test.txt"))
{
    writer.Write("TEST");
}

我相信 Process.Start 在 Windows Mobile 中应该没问题...

如果您可以升级到更高版本的 Compact Framework,您可以使用File.WriteAllText

For the first, use Process.Start.

For the second, in the Compact Framework you'd need:

using (TextWriter writer = new TextWriter("test.txt"))
{
    writer.Write("TEST");
}

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.

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