gpt4 book ai didi

c# - 如何使用 dotnet 在命令行中传递参数?

转载 作者:行者123 更新时间:2023-12-03 13:39:13 25 4
gpt4 key购买 nike

命令dotnet myapp.dll -- [4, 3, 2]抛出异常 System.FormatException: Input string was not in a correct format .
我不知道语法。我应该如何正确传递参数?
我使用powershell。

最佳答案

using System;

namespace ConsoleApp3
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(string.Join('-', args));
}
}
}
通过 Powershell 6 调用它:
dotnet .\ConsoleApp3.dll "[1,2,3]"
输出:
[1,2,3]
在上述通话中,您的 Main方法将收到 [1,2,3]作为单个字符串,您必须在代码中解析/拆分它。
如果你想要一个反射(reflect)在 string[] 中的数组 Main 的数组您可以使用 PowerShell 数组:
dotnet .\ConsoleApp3.dll @(1,2,3)
输出:
1-2-3
这里是 PowerShell 数组 @(1,2,3)被转换为 string[] -大批。因此 PowerShell 数组的每一项都被注入(inject)到 string[]大批。
PowerShell 5.1 上的行为相同。

关于c# - 如何使用 dotnet 在命令行中传递参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56108617/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com