How to Set and Retrieve an Argument String from Another Application using C#
ProcessStartInfo processInfo = new ProcessStartInfo()
{
FileName = "Path to executable.exe",
Arguments = "ArgumentString",
RedirectStandardOutput = true,
RedirectStandardError = true
};
string[] args = Environment.GetCommandLineArgs();
write the above code in the executable solution.
Happy Coding :)