How can I find this information:
We think we started this process:
testFile.exe i- 100 k- "hello" j-"C:\" "D:\Images" f- "true"
Now, how can I get the main argument when the application starts, so I have:
int i = ... ; //i will be 100 string k = ... ; // k = hello string[] path = ... ; // = path[0] = "C:\" , path[1] = "D:\Images" bool f = ... ; // f = true;
considers
source share