We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to pass parameter name in format {char}{number}?
Code example:
CoconaApp.Run(([Option("L1")] string line1, [Option("L2")] string line2) => { Console.WriteLine($"Hello {line1}\n{line2}"); });
--L1 Hello --L2 World
I have got error: Error: Unknown option 'L1'
The text was updated successfully, but these errors were encountered:
This is not because of the numbers. The error is due to the option name is case-sensitive.
Sorry, something went wrong.
No branches or pull requests
How to pass parameter name in format {char}{number}?
Code example:
I have got error:
Error: Unknown option 'L1'
The text was updated successfully, but these errors were encountered: