Pass parameters to a new process

  • Thread starter Thread starter John Smith
  • Start date Start date
J

John Smith

Is there a relatively simple way in .NET to spawn a new process (also
written in .NET) and pass parameters to that process other than using the
command line arguments, temporary files or something more advanced like
sockets etc ? I'd like to pass a string parameter containing XML to a newly
spawned process.
 
John Smith said:
Is there a relatively simple way in .NET to spawn a new process (also
written in .NET) and pass parameters to that process other than using the
command line arguments, temporary files or something more advanced like
sockets etc ? I'd like to pass a string parameter containing XML to a newly
spawned process.

The use of a socket or temporary file seems pretty reasonable to me.
What do you want to do that using a network connection would be
problematic for?
 
Back
Top