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
 
Back
Top