从thecommand行运行时,获取输入参数?

发布于 2025-01-22 10:50:42 字数 181 浏览 0 评论 0原文

我是C#的初学者,最近我想开发一个从命令行开始的程序。

假设我现在有一个控制台程序 我从命令行运行并提供一些参数,我需要获取-d“ d:\ output \”

C:\Program Files\myprogram.exe -d "D:\output\"

I am a beginner in C# and I recently wanted to develop a program that starts from the command line with some parameters.

Suppose I have a console program now
I run it from the command line and provide some parameters ,I need to get -d "D:\output\"

C:\Program Files\myprogram.exe -d "D:\output\"

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

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

发布评论

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

评论(1

凌乱心跳 2025-01-29 10:50:42
static class Program
{
    static void Main(string[] args)
    {
        // your code here; 'args' has the command line arguments
        // i.e. args will be length 2, args[0]==="-d", etc
       
    }
}
static class Program
{
    static void Main(string[] args)
    {
        // your code here; 'args' has the command line arguments
        // i.e. args will be length 2, args[0]==="-d", etc
       
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文