Tyzak
Tyzak

Reputation: 2438

Call a perl script from vb.net with parameters

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?

Upvotes: 0

Views: 1042

Answers (1)

KV Prajapati
KV Prajapati

Reputation: 94645

Use System.Diagnostics.Process class to invoke an external executable or use System.net.WebClient class to request a url.

Upvotes: 2

Related Questions