1

Possible Duplicate:
Determine framework (CLR) version of assembly

I need to get the CLR version of a .NET DLL from a C++ process. I tried using the .NEt method GetVersionFromProcess but it only receives a process handle.
If I send it the DLL's file handle or base address, it will return E_INVALIDARGS.

Community
  • 1
  • 1
Idov
  • 5,006
  • 17
  • 69
  • 106

1 Answers1

1

These native functions return the .NET version used by an assembly:

Ben Voigt
  • 277,958
  • 43
  • 419
  • 720