Modules

  • Thread starter Thread starter The Last Danish Pastry
  • Start date Start date
T

The Last Danish Pastry

When I am debugging Debug|Windows|Modules displays a list of modules names,
versions and timestamps. How, programmatically, could I get this
information?
 
When I am debugging Debug|Windows|Modules displays a list of modules names,
versions and timestamps. How, programmatically, could I get this
information?

The System.Diagnostics.Process class and its Modules property can give
you the list of loaded modules, represented by ProcessModule
instances. The ProcessModule.FileVersionInfo can get you information
such as file version.



Mattias
 

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