I had look this question about Passing command line arguments in C#.
But in my case I have to pass array of parameters to the calling .exe file.
e.g.
var arr = new string[] {"Item title","New task","22","High Priority"}
Is it possible to use Process.Start()
with exe path along with the array
I have the .exe path
const string path = @"C:\Projects\Test\test.exe";
Thanks