Ypsomed.ArgumentParser 1.1.0

dotnet add package Ypsomed.ArgumentParser --version 1.1.0
                    
NuGet\Install-Package Ypsomed.ArgumentParser -Version 1.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ypsomed.ArgumentParser" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ypsomed.ArgumentParser" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Ypsomed.ArgumentParser" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Ypsomed.ArgumentParser --version 1.1.0
                    
#r "nuget: Ypsomed.ArgumentParser, 1.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Ypsomed.ArgumentParser@1.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Ypsomed.ArgumentParser&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Ypsomed.ArgumentParser&version=1.1.0
                    
Install as a Cake Tool

ArgumentParser

A simple and lightweight utility for parsing command line arguments.

Terms

  • Argument: A string out of the args collection provided to the program when starting.
  • Parameter: A description of the value given to the program. (Thus, arguments are the content of parameters)

Style

ArgumentParser expects the following format:
<'key' 'value'> <'flag'> <'required'> <'optional'>

Parameters

  • All parameters are declared to the parser with a string identifier that is used for accessing the values after parsing the arguments.
  • All parameters can have any number of aliases, as long as they are distinct (the identifier is also treated as an alias).

Named

Mapping
  • Named arguments are expected before any required or optional ones. The ordering of flags and named parameters however, does not matter.
  • Named arguments must consist of a key-value pair, where the key matches an alias of a named parameter and the value will be parsed to the desired data type.
  • Named arguments are always optional.
Declaring
  • Named parameters can be specified with a custom parse function and a default value.

Flag

Mapping
  • Flag arguments are expected before any required or optional ones. The ordering of flags and named parameters however, does not matter.
  • Flag arguments must consist of a single string matching an alias of a flag parameter. The parameter value is true, if the flag is present and false, if it is not.
  • Flag arguments are always optional.
Declaring
  • Flag parameters can only be specified with any number of aliases.

Required

Mapping
  • Required parameters are positional.
  • Required arguments are expected after any flags and named parameters.
  • The first argument that does not match any flag or named parameter will be mapped to the first required parameter.
Declaring
  • Required parameters can be specified with a custom parse function.
  • Required parameters have only one alias - the identifier.

Optional

Mapping
  • Optional parameters are positional.
  • Optional arguments are expected last.
Declaring
  • Optional parameters can be specified with a custom parse function.
  • Optional parameters have only one alias - the identifier.

Reading Values

The parameter values can be accessed on the parser object either using the generic Parser.Value<T>(string name) function, with the alias as the name or the indexer Function Parser[string key] and the generic Parameter.Vaue<T>() on the returned parameter.

Example

static void Main(string[] args)
{
      Parser p = new Parser(
          Parameter.Flag("-v", "--verbose"),
          Parameter.Named("-l", LogLevel.Error, arg => Enum.Parse(typeof(LogLevel), arg), "--loglevel"),
          Parameter.Required("name", arg => arg),
          Parameter.Optional("port", 8080, arg => int.Parse(arg))
      );
      // use this, if you want to allow undefined arguments
      List<string> unmapped = p.Map(args);
      // use this, if you want to allow only defined arguments
      bool success = p.MapStrict(args, out string helpText);
      if (!success) Console.WriteLine(helpText);

      Console.WriteLine($"Verbose output is {(p.Flag("-v") ? "enabled" : "disabled")}");
      Console.WriteLine($"Log level is {p["-l"].Value<LogLevel>()}");
      Console.WriteLine($"Name is {p.String("name")}");
      Console.WriteLine($"Port is {p.Value<int>("port")}");

}

Setting up the parser

You can specify the parameters in any order. However, it is best practice to specify the positional parameters last.

          Parameter.Flag("-v", "--verbose"),

A flag parameter is specified with the identifier "-v" and one additional alias "--verbose". You could also specify more (or less, but at least one) aliases.

          Parameter.Named("-l", LogLevel.Error, arg => Enum.Parse(typeof(LogLevel), arg), "--loglevel"),

A named parameter is specified with the identifier "-l", the default value of LogLevel.Error, a lambda function using the Enum.Parse(...) method and one additional alias.

          Parameter.Required("name", arg => arg),

A required parameter is specified with the identifier "name" and an identity parse function. In this case you could also omit the parse function, as all parameters default the parse function to the identity, if omitted.

          Parameter.Optional("port", 8080, arg => int.Parse(arg))

An optional parameter is specified with the identifier "port", the default value of 8080 and a lambda function using the int.Parse(...) method.

Mapping the arguments

      // use this, if you want to allow undefined arguments
      List<string> unmapped = p.Map(args);

The permissive method maps all arguments to the parameters defined on the parser. If more arguments are provided than there are parameters, the additional arguments are returned as a list. If required parameters are specified, but not enough arguments provided to map all of them, an InvalidOperationException is thrown.

      // use this, if you want to allow only defined arguments
      bool success = p.MapStrict(args, out string helpText);
      if (!success) Console.WriteLine(helpText);

The strict method maps all arguments to the parameters defined on the parser. If more arguments are provided than there are parameters, the method returns false and provides a helpText string that can be displayed to the user. If required parameters are specified, but not enough arguments provided to map all of them, an InvalidOperationException is thrown.

Accessing the values

      Console.WriteLine($"Verbose output is {(p.Value<bool>("-v") ? "enabled" : "disabled")}");
      Console.WriteLine($"Log level is {p["-l"].Value<LogLevel>()}");
      Console.WriteLine($"Name is {p.Value<string>("name")}");
      Console.WriteLine($"Port is {p.Value<int>("port")}");

The example shows the two possible ways to access the parameter values and how to output them to the console. Note, that you must specify the type for the generic functions. In most scenarios, the C# compiler can not infer the type for the parameter values.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.0 230 4/18/2025
1.0.1 248 4/18/2025
1.0.0 240 8/21/2023