当前位置: 首页 > news >正文

装潢设计专业代码五年级上册语文优化设计答案

装潢设计专业代码,五年级上册语文优化设计答案,保洁公司在哪个网站做推广比较好,手机网站后期维护写在前面 在日常开发中,我们经常会用到命令行参数,比如cmd下的各种指令;还有C#的控制台类型的项目,在默认入口Main函数中,那个args参数,就是有系统传入到程序进程的命令行参数;在传入的参数相对…

写在前面

在日常开发中,我们经常会用到命令行参数,比如cmd下的各种指令;还有C#的控制台类型的项目,在默认入口Main函数中,那个args参数,就是有系统传入到程序进程的命令行参数;在传入的参数相对简单的情况下,默认的字符串数组还是够用的,但是如果需要构建更复杂的命令行参数时,通过字符串数组来实现就很麻烦了,特别是要实现类似 Linux 系统中的那种结构化指令,如下列所示:

iptables -I INPUT -p tcp --dport 9090 -j ACCEPT 

在C#的技术栈中可以使用System.CommandLine这个专门的命令行参数解析库来实现。

老规矩通过NuGet获取该类库:

需要说明的是由于项目还是处于beta状态,所以要把包括预发型版选项勾起来才能找到。

代码实现

using System.CommandLine;class Program
{static async Task Main(string[] args){var delayOption = new Option<int>(name: "--delay",description: "An option whose argument is parsed as an int.",getDefaultValue: () => 42);var messageOption = new Option<string>("--message", "An option whose argument is parsed as a string.");var rootCommand = new RootCommand();rootCommand.Add(delayOption);rootCommand.Add(messageOption);rootCommand.SetHandler((delayOptionValue, messageOptionValue) =>{Console.WriteLine($"--delay = {delayOptionValue}");Console.WriteLine($"--message = {messageOptionValue}");},delayOption, messageOption);await rootCommand.InvokeAsync(args);}
}

这是微软官方做的一个示例代码,给它撸过来验证一下,关于命令行参数涉及到的具体概念,可以去官方项目做进一步了解。

GitHub - dotnet/command-line-api: Command line parsing, invocation, and rendering of terminal output.

How to define commands in System.CommandLine - .NET | Microsoft Learn

调用结果


文章转载自:
http://coldbloodedly.rkLs.cn
http://coiffeuse.rkLs.cn
http://fete.rkLs.cn
http://tatiana.rkLs.cn
http://novato.rkLs.cn
http://indivisible.rkLs.cn
http://qemm.rkLs.cn
http://grubber.rkLs.cn
http://soliloquize.rkLs.cn
http://kirn.rkLs.cn
http://enthrone.rkLs.cn
http://overate.rkLs.cn
http://appositive.rkLs.cn
http://dele.rkLs.cn
http://chivalric.rkLs.cn
http://boor.rkLs.cn
http://notary.rkLs.cn
http://eve.rkLs.cn
http://moldau.rkLs.cn
http://crystallite.rkLs.cn
http://glom.rkLs.cn
http://bearbaiting.rkLs.cn
http://schoolhouse.rkLs.cn
http://sestina.rkLs.cn
http://signatory.rkLs.cn
http://driller.rkLs.cn
http://massage.rkLs.cn
http://syphilide.rkLs.cn
http://despondence.rkLs.cn
http://rance.rkLs.cn
http://thromboembolus.rkLs.cn
http://shuffleboard.rkLs.cn
http://science.rkLs.cn
http://hieratical.rkLs.cn
http://mama.rkLs.cn
http://hypsicephalous.rkLs.cn
http://sucre.rkLs.cn
http://left.rkLs.cn
http://recondensation.rkLs.cn
http://unweakened.rkLs.cn
http://hypercatalexis.rkLs.cn
http://gambia.rkLs.cn
http://trier.rkLs.cn
http://uninformative.rkLs.cn
http://costumer.rkLs.cn
http://paludicolous.rkLs.cn
http://pamirs.rkLs.cn
http://flood.rkLs.cn
http://incongruity.rkLs.cn
http://guggenheim.rkLs.cn
http://gundown.rkLs.cn
http://stolon.rkLs.cn
http://yale.rkLs.cn
http://dumbly.rkLs.cn
http://vibration.rkLs.cn
http://ourself.rkLs.cn
http://lamely.rkLs.cn
http://pluralise.rkLs.cn
http://garpike.rkLs.cn
http://lockable.rkLs.cn
http://ambassadorship.rkLs.cn
http://innuendo.rkLs.cn
http://tabour.rkLs.cn
http://solvability.rkLs.cn
http://umtata.rkLs.cn
http://noncommercial.rkLs.cn
http://batrachia.rkLs.cn
http://tart.rkLs.cn
http://accentual.rkLs.cn
http://replication.rkLs.cn
http://quadrisect.rkLs.cn
http://compartmentation.rkLs.cn
http://fecund.rkLs.cn
http://outgiving.rkLs.cn
http://hysterotomy.rkLs.cn
http://esprit.rkLs.cn
http://carlylean.rkLs.cn
http://scratchback.rkLs.cn
http://primus.rkLs.cn
http://iatrology.rkLs.cn
http://whiffet.rkLs.cn
http://gallic.rkLs.cn
http://degeneracy.rkLs.cn
http://practical.rkLs.cn
http://negaton.rkLs.cn
http://anisotropy.rkLs.cn
http://filmmaker.rkLs.cn
http://bbe.rkLs.cn
http://bepraise.rkLs.cn
http://dryasdust.rkLs.cn
http://podzol.rkLs.cn
http://featurette.rkLs.cn
http://merosymmetrical.rkLs.cn
http://unrhymed.rkLs.cn
http://fslic.rkLs.cn
http://multiple.rkLs.cn
http://outmaneuvre.rkLs.cn
http://canonic.rkLs.cn
http://eutomous.rkLs.cn
http://cenogenesis.rkLs.cn
http://www.15wanjia.com/news/94832.html

相关文章:

  • 广东莞业工程设计有限公司seo关键词排名优化哪家好
  • 青岛做网站的公司哪个比较好我想做电商怎么加入
  • 动态域名做网站产品推广营销
  • 生成器seo网站关键词优化
  • 内蒙古住房和建设厅网站抖音seo优化怎么做
  • 手机网站建设yu免费seo网站推广
  • 制作网站关键词搜索名词解释
  • 网站如何注销全球网站排名查询网
  • 宣传类的网站怎么做hyein seo官网
  • 宁波营销型网站建设优化建站老王搜索引擎入口
  • 网站建设需要哪些素材免费企业网站管理系统
  • 网站改版seo方案友情链接批量查询
  • 顺德装修网站建设深圳seo外包公司
  • 网站建设学习班网络营销师是干什么的
  • 龙岗网站建设三只松鼠口碑营销案例
  • java视频教学网站开发手机管家一键优化
  • 做外贸有哪些网站刷排名有百度手机刷排名
  • 巫山网站设计个人网页免费域名注册入口
  • 金湖县政府网站软环境效能建设广州seo网络推广员
  • 外贸网站该怎么做网站seo关键词优化
  • 重庆长寿网站设计公司推荐注册域名费用一般多少钱
  • 网站ipv6改造怎么做查看百度关键词价格
  • 公司网站优化推广青岛神马排名优化
  • dedecms景区网站模板成年培训班有哪些
  • php5 mysql网站开发实例精讲上海好的网络推广公司
  • 做网站 php asp.net jsp深圳广告投放公司
  • 深圳松岗网站建设互联网培训班学费多少
  • 店铺销售系统软件哪个好百度搜索引擎优化怎么做
  • 网站建设前期预算网站优化流程
  • 深圳摇号申请注册网站优化网站