Closed
Description
In the project I am working there is a method which need command line arguments as a string array
which I can't change. So how to unparse into string array.
I can get a string by unparsing using var arguments = Parser.Default.FormatCommandLine(Program.cliOption)
.
But my argument will be something like this.
app install --path "c:/My folder/app" --validate = false
So if I use above workaround I can't use string.Split(' ')
since it possible to contains spaces
in file paths. So is there any workaround to get string array from the object
?