If you want to start a program then you can do it by using the System.Diagnotics.Process class, and its Start() method.
To pass in aguments to that program right after the exe path type them in, when using the Process start method.
To retrieve those you can use the following System.Environment.CommandLine and System.Environment.GetCommandLineArgs, which return the whole command line or command line divided into a string array, respectively.