Resources  
  • Get All Modules Used By Process In C#Apr 10, 2013. In this article you will get a list of all modules used by a Process in C#.To get all modules used by a process in C#, you can use the Process. Modules property to retrieve a collection of ProcessModule objects associated with the process. Here's a C# program that demonstrates how to do this.
  • Redirecting Standard Input/Output using the Process ClassDec 18, 2001. When a program starts, a new process (a program in execution) is created by the operating system,and this process is identified by its process Id and also a name.