Question Call perl EXE from .net

anil3b2

Member
Joined
Jun 19, 2009
Messages
14
Programming Experience
1-3
I want to call perl EXE to process something within .NET and i need to get some results from the perl exe.

Can anybody suggest me how can i achieve the same.

For example i am going to pass two array to perl exe and i need to return a array form perl.

Regards
Anil
 
Is it a console app (runs on the commandline) ? If it is, you can use a stream and redirect the output using the System.Diagnostics.Process class.
 
Back
Top