I’m using Visual Studio 08 and Vb.Net (3.5).
I want to call a perl script.
This perl script should get two values (that the user wrote into input-elements in the vb.net application).
Then the perl script should return one or more strings (maybe a list or an array?).
How can I do this?
Use
System.Diagnostics.Processclass to invoke an external executable or useSystem.net.WebClientclass to request a url.