Utility.CommandLine.Arguments icon indicating copy to clipboard operation
Utility.CommandLine.Arguments copied to clipboard

Documentation oversight

Open GerryOnGithub opened this issue 3 years ago • 1 comments

I see it is possible to have arguments like -a with no value, but how does the code know the input is -a with no value?

GerryOnGithub avatar Mar 01 '21 22:03 GerryOnGithub

The resulting dictionary from a Parse will contain { "a": "" }; an empty string value. If using Populate the backing field will be set to true if a key matching the attribute is present.

Hope that answers the question.

jpdillingham avatar Jul 26 '21 03:07 jpdillingham