Run a method from an exe file
- by Lily
Hi
I need to call a method from an exe file
ProcessStartInfo startInfo = new ProcessStartInfo(@"exeParser.exe");
startInfo.WindowStyle = ProcessWindowStyle.Normal;
startInfo.CreateNoWindow = false;
startInfo.RedirectStandardOutput = true;
startInfo.UseShellExecute = false;
startInfo.Arguments = ??
I don't know how to call a method and pass parameters
Any help please??
The executable is mine but I'm having trouble using the things in a web app so I thought it would be better to call it as a process
Thanks