Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
And will you show us your code which doesn't work for you? – LihO Feb 4 '12 at 17:40
1  
@ben voigt: I need this programatically and from a C++ process. As I wrote. – Idov Feb 4 '12 at 17:59
IMetaDataImport2::GetVersionString() – Hans Passant Feb 4 '12 at 18:27

marked as duplicate by Ben Voigt, Mark, Bo Persson, Nicol Bolas, bmargulies Feb 5 '12 at 14:36

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

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

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.