Results 105 comments of Nemec

Hi @SuhovDE, it hasn't been implemented in the new version either. One option I can think of is to combine them into one verb with a hyphen (e.g. Create-DataArea, Create-App)....

This is not going to happen with short options - short options must be a single character only. This conforms to the standard UNIX getopt format. commandline also allows bundling...

Two things: 1. `MapResult` has a final delegate parameter that is required to be of type `IEnumerable` for any errors. 2. Each delegate must return a _value_ - they are...

Did it mention a file/line number?

Sorry I misread and thought you were building the source code of the library. This worked for me on the latest beta: ```csharp var result = CommandLine.Parser.Default.ParseArguments {return ""; },...

What's wrong with `-S item1 item2 item3` with an `IEnumerable` parameter? ```csharp [Option('v')] public IEnumerable Vals { get; set; } ```

Hi, what version of the library are you using? If you aren't using the latest prerelease, could you try it out?

You'll need to enable prerelease packages, then you can update to the latest 2.x beta. ![](http://i.stack.imgur.com/YFlp5.jpg)

Hi, try something like this instead, things have changed a lot in v2.0 ``` csharp void Main() { var parser = new Parser(); var result = parser.ParseArguments("--arp --StatusWidth 10 --logged-cultures=EN,ES,IT".Split());...

What's the difference between`-optimize+ -unsafe-` and `-optimize` (aka leaving the parameter out)?