In C# the Main class has string[] args parameter.
What is that for and where does it get used?
For passing in command line parameters. For example args[0] will give you the first command line parameter, if there is one.
args[0]