时间:2019-03-17 标签:c#consoleapplicationarguments

发布于 2024-12-10 10:39:22 字数 119 浏览 0 评论 0原文

在控制台应用程序中,当您运行 exe 文件(例如 ipconfig)时,您可以添加参数,例如 /?,或者有时使用 - 。我的问题是,是否有一些内置资源或正确的方法来做到这一点,或者仅取决于程序员的决定和简单的正则表达式使用?

In console applications, when you run exe file (such as ipconfig) you can add parameters, such as /?, or some times its with - . My question is, is there some build in resource or right way to do it or its just on programmers decision and simple regex usage?

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

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

发布评论

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

评论(2

丑疤怪 2024-12-17 10:39:22

从这里检查 CommandLine Parsing API:

http://testapi.codeplex.com/

我已经在我开发的任何命令行应用程序。

Check the CommandLine Parsing API from ere:

http://testapi.codeplex.com/

I've used it in any commandline application I've dev.

摘星┃星的人 2024-12-17 10:39:22

这完全是程序员的决定。这是一种很好的(推荐的)方法,不对用户做任何全新的事情。因此,如果您的程序也接受“/”和“-”,那么它将很容易使用。

That is completely a programmers decision. It is a good (recommended) way, to do nothing completely new to the user. So, if your program accepts "/" and "-" as well, it will be easy to use.

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