gpt4 book ai didi

c# - 如何解析主要论点?

转载 作者:太空狗 更新时间:2023-10-30 00:35:52 26 4
gpt4 key购买 nike

我怎样才能找到这些信息:

认为我们开始了这个过程:

testFile.exe i- 100 k- "hello" j-"C:\" "D:\Images" f- "true" 

现在我怎样才能在应用程序启动时获得主要参数,所以我有:

int i = ... ; //i will be 100
string k = ... ; // k = hello
string[] path = ... ; // = path[0] = "C:\" , path[1] = "D:\Images"
bool f = ... ; // f = true;

问候

最佳答案

参数被传递给被调用的 Main 函数:

static void Main(string[] args) 
{
// The args array contain all the arguments being passed:
// args[0] = "i-"
// args[1] = "100"
// args[2] = "k-"
// args[3] = "hello"
// ...
}

参数的顺序与命令行中传递的顺序相同。如果你想使用命名参数,你可以看看 this post这表明 NDesk.OptionsMono.Options .

关于c# - 如何解析主要论点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3430457/

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