Hello I am working on a windows forms application that will accept command line args.
To do so I changed: static void Main() -to- static void Main(string[] args) in the program.cs.
My problem is I don't know how to access the args in my Form1.cs with all my event handlers.
Thanks