ConsoleAppFramework icon indicating copy to clipboard operation
ConsoleAppFramework copied to clipboard

Supply multiple values using repeated arguments

Open jamesfoster opened this issue 2 years ago • 0 comments

Allow multiple command line arguments with the same name to bind to an array parameter. This would avoid separating on comma.

public void Command(string[] name)

my-cli command —name Foo —name Bar name = [“Foo”, “Bar”]

my-cli command —name Foo —name Bar,Baz name = [“Foo”, “Bar,Baz”]

jamesfoster avatar Jun 14 '22 12:06 jamesfoster