I am passing in a complex string as an argument to my Console application. I noticed that the resultant string[] args array in my Main method is what I want that string to be parsed as.
Now, I want to be able to parse strings of this format and the get the same string[] in other parts of my framework, outside of my console application/process as well and do not want to reinvent the wheel. I tried to see if I could find and invoke the framework method that is used to parse command line arguments that are passed to the Main method but could not find anything. I read about some command line parsing options including NDesk but cannot use that in my present situation.
Anyone aware of this framework method(s)? Or any other ideas to go about this?
var stringArray = someString.Split(new {' '}, StringSplitOptions.RemoveEmptyEntries)? – Scott Pedersen Aug 2 '11 at 23:47