+ 1
Run command from c#
how to excute command from c# like a command to run xmgrace or gnuplot i have searched but i only found big script " lots of line " it wouldn't be good to add all those on my code just to call xmgrace . I want to run xmgrace to plot a graph
2 Respuestas
0
Can you use Process.start()
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "WINWORD.EXE";
startInfo.Arguments = file;
Process.Start(startInfo);
https://www.dotnetperls.com/process
0
Thank you