Hi folks,
i've got a pretty simple .NET console application. I wish to pass in some command line arguments ... nothing tough there.
Now, the kicker is, i usually have a LIST of items i wish to pass in, for one argument. In this case, a list of files. I'm not sure of the best way to do this.
eg. myapp.exe files=aaa.txt,bbb.txt,ccc.txt
but what about file names with spaces? Should i comma delimate it?
to make things interesting, i've got other args, which accept single values .. so i'm not sure if i should put all the arg data in double quotes..
eg. myapp.exe files=aaa.txt,bbb.txt formatting=true foo=hello
or
eg myapp.exe files="aaa.txt","bbb.txt" formatting="true" foo="hello"
