4
Is there any way to call an executable other than by process?
I need something that does not use the code below to call an executable because when I finish a process of an application that is not native to Windows, I cannot call it again with the command:
foreach (Process pr in Process.GetProcessesByName(nomeExecutavel))
{
if (!pr.HasExited)
pr.Start();
}
Note: It is an Application console in C#
You can explain better what you intend to do?
– Paulo Morgado