exe 可以接受 Compact Framework 中的参数吗?

发布于 2024-11-30 03:25:37 字数 172 浏览 0 评论 0原文

我应该使用什么语法来使我的智能设备应用程序在 .net CF 2.0 中编写接受参数,以便我可以通过以下方式启动 exe:

Process.Start("IExplore.exe", "www.northwindtraders.com") ;

是否应该修改 Main() ? 如果是这样,怎么办?

What is the syntax I should use to make my Smart Device app written in.net CF 2.0 accept arguments, so I can start exe in he following manner:

Process.Start("IExplore.exe", "www.northwindtraders.com");

Should the Main() be modified?
If so, how?

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

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

发布评论

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

评论(1

ぽ尐不点ル 2024-12-07 03:25:37

当然,您只需更改 Main 以接受字符串数组输入。

static void Main(string[] args)
{
    // do stuff
}

Sure, you simply change Main to accept a string array input.

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