I can find many examples on how to get arguments in a console application, but I can't seem to find an example of how to get arguments in a windows form application.
I would like to following things.
How do i do that?
You can get the command line arguments as a string array using Environment.GetCommandLineArgs().
You use it as such:
string[] args = Environment.GetCommandLineArgs()