Hope this helpsProcessStartInfo ps = new ProcessStartInfo("perl.exe", "program.pl arg +s"); ps.UseShellExecute = false; ps.RedirectStandardOutput = true; Process p=new Process(); p.Start(ps); string output = p.StandardOutput.ReadToEnd(); p.WaitForExit();
In reply to Re: Perl in C#
by marto
in thread Perl in C#
by fastofruto
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |