Nemec
Nemec
I'm not sure the library accepts `-` as a standalone value. Can you use something else for your purposes?
The multiple types are [extension methods](https://github.com/gsscoder/commandline/blob/9ff3c90990218392358c21e536cb0f918f63edb1/src/CommandLine/ParserExtensions.cs#L47). You need to import the `CommandLine` namespace to use them.
There's no autodetection, but do verbs not do what you're asking? https://github.com/gsscoder/commandline/blob/master/tests/CommandLine.Tests/Unit/ParserResultExtensionsTests.cs#L25 ```csharp Parser.Default.ParseArguments( new[] { "clone", "https://value.org/user/file.git" }) .WithParsed(opts => expected = "wrong1") .WithParsed(opts => expected = "wrong2") .WithParsed(opts...
If you build your own parser instead of using the default, you can provide a `ParserSettings` and can set a custom [HelpWriter](https://github.com/gsscoder/commandline/blob/master/src/CommandLine/ParserSettings.cs#L98) in that class.
Yes, if you are interested please submit a pull request 🙂 I made the existing Spanish translation with the help of Google, but I'm not a fluent speaker so I'll...
@JVimes if you're using this library, feel free to check out the new 2.0 branch. I just checked in code removing all thrown Exceptions. You now have a pattern-matching-esque return...
Shoot, I converted the sample to a unit test so I'd know whenever I broke the sample code, but now I've gone and copied that unit test back into the...
Can you give a specific example of what you are trying to do? I understand what you mean with ffmpeg, but I am having a bit of trouble understanding the...
Thanks for providing more details, that's a very interesting idea. I will give some thought to what it would take to implement this in the code.
Hey @RedMser I am taking a look at this now and am considering adding an event that is triggered immediately after a parameter and its values are parsed. You will...