commandline icon indicating copy to clipboard operation
commandline copied to clipboard

Support for numbers as short options

Open nicolasr75 opened this issue 1 year ago • 0 comments

We have the following options definition:

[Option('1', "readlog1", HelpText = "Reads log entries from the Log 1 memory.")]
public bool ReadLog1 { get; set; }

[Option('2', "readlog2", HelpText = "Reads log entries from the Log 2 memory.")]
public bool ReadLog2 { get; set; }

It looks like the short options don't work because they are numbers. Is there any special reason for this?

nicolasr75 avatar Aug 14 '24 13:08 nicolasr75