文件名称:ArgumentParser:一个帮助你创建控制台应用程序的小项目
文件大小:25KB
文件格式:ZIP
更新时间:2024-06-22 11:23:31
C#
参数解析器 一个小类,可帮助您将字符串数组参数解析为对象。 使用此类,您可以节省为控制台应用程序创建的验证所花费的时间。 ArgumentsParser 只接受一个字符串数组输入并返回一个类的实例,将参数绑定到类属性。 绑定是使用属性上的属性完成的,这些属性允许您定义必需的参数、属性的默认值和参数值的正则表达式验证。 如何安装 要安装 ArgumentsParser,请在运行以下命令 Install-Package IPValverde.ArgumentParser 如何使用 ArgumentParser 负责将参数(具有参数名称和值的字符串数组)绑定到类属性。 所以首先,你需要一个具有可写属性的类,然后你需要用一个 ArgumentAttribute 来装饰它们。 ArgumentAttribute 需要参数名称。 using IPValverde . ArgumentPar
【文件预览】:
ArgumentParser-master
----ArgumentParser.sln(1KB)
----LICENSE.md(1KB)
----README.md(4KB)
----ArgumentParser.v12.suo(69KB)
----ArgumentParser()
--------ArgumentAttribute.cs(2KB)
--------Properties()
--------ArgumentParser.nuspec(1KB)
--------ArgumentParser.csproj(3KB)
--------Exceptions()
--------Parser.cs(10KB)
----.gitignore(4KB)
----ArgumentParser.Tests()
--------ArgumentParser.Tests.csproj(4KB)
--------ParserTests.cs(10KB)
--------Properties()