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
  • 4,870
  • 14
  • 63
  • 103

1 Answers1

1

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

Ben Voigt
  • 269,602
  • 39
  • 394
  • 697