Returns a string array containing the command-line arguments for the current process.
Input at the command line | Resulting command line arguments |
---|---|
MyApp alpha beta | MyApp, alpha, beta |
MyApp "alpha with spaces" "beta with spaces" | MyApp, alpha with spaces, beta with spaces |
MyApp 'alpha with spaces' beta | MyApp, 'alpha, with, spaces', beta |
MyApp \\\alpha \\\\"beta | MyApp, \\\alpha, \\bet |
MyApp \\\\\"alpha \"beta | MyApp, \\"alpha, "beta |