Executing an application

  • Thread starter Thread starter Timothy V
  • Start date Start date
Timothy,

You can use the static Start method on the Process class to call other
executables from C#.

Hope this helps.
 
Would the memory allocated to the started .EXE be accessible by the C# class
it was called from ?
 
No, it's in a separate win32 process. You would have to use one of the IPC
mechanisms to exchange data.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top