I have a program that receives something like this from a settings file:
"C:\Files\App 1\App.exe" "-param1:true -blah"
It receives this all as 1 string, but the Process object in C# needs the program and the arguments passed separately. Is there an easy way in C# to parse this, or a way to just pass the statement as it is without parsing it first?