[Mono-list] graphical wrap

Jonathan Pryor jonpryor@vt.edu
Sat, 22 May 2004 11:45:16 -0400


On Wed, 2004-05-19 at 01:51, Fred Blaise wrote:
> I would like to create a basic GUI for wget. That would push me to use
> many widgets :) My question is: what is the best way to interact with
> the command line program from my GUI application?

You might try looking at System.Diagnostics.Process, which allows you to
launch a new process with arbitrary arguments and interact with it's
standard input, output, and error streams.

 - Jon