What i can do from here?

And once again, much thanks to you. Google wasn't providing much help.
 
Last edited:
There's this thing called a for loop. Not sure if you guys have heard of it.

Code:
for (int i=0; i<args.Length; i++) {
    string cArg = args[i];
    //do stuff
}
 
Back
Top