在C#中解析命令行参数的最佳方法?[关闭]

在C#中解析命令行参数的最佳方法?[关闭],第1张

在C#中解析命令行参数的最佳方法?[关闭]

我强烈建议使用NDesk.Options(文档)和/或Mono.Options(相同的API,不同的名称空间)。文档中的示例

bool show_help = false;List<string> names = new List<string> ();int repeat = 1;var p = new OptionSet () {    { "n|name=", "the {NAME} of someone to greet.",       v => names.Add (v) },    { "r|repeat=",        "the number of {TIMES} to repeat the greeting.n" +"this must be an integer.",        (int v) => repeat = v },    { "v", "increase debug message verbosity",       v => { if (v != null) ++verbosity; } },    { "h|help",  "show this message and exit",        v => show_help = v != null },};List<string> extra;try {    extra = p.Parse (args);}catch (OptionException e) {    Console.Write ("greet: ");    Console.WriteLine (e.Message);    Console.WriteLine ("Try `greet --help' for more information.");    return;}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5564562.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存