I'm using the beta 7.2 reflector, and when i'm trying to reflect some exe file i see this message. what does it mean ?
thanks
|
I'm using the beta 7.2 reflector, and when i'm trying to reflect some exe file i see this message. what does it mean ? thanks |
|||
|
|
|
It means that the EXE is not a .NET assembly. It is a standard Windows executable or COM executable. For example, programs written in VB6 are not .NET assemblies; they contain none of the metadata you would expect a .NET assembly to contain. |
|||||||||||
|
|
If it really is a .NET assembly (as some of your later comments, based on info from Spy++, suggest), then it's possibly been obfuscated. Some obfuscators can modify the assembly metadata streams to make them appear to be invalid to both ildasm and Reflector, whereas the CLR can still load them because it does not do as much validation. HTH, Bart |
|||
|
|
|
.Net Reflector can only decompile .NET assemblies. My guess would be that the executable is not a .NET executable and hence Reflector cannot load it. |
|||
|
|
|
I think it's looking for a CLI header indicating that the .exe is in fact a .NET assembly, and it doesn't look like the one you have qualifies. |
|||
|
|
|
You are trying to reflect a COM or native executable/dynamic link library and not a .NET assembly. Reflector cannot do that. There are other tools for examining COM resources, although they will not completely dissassemble like Reflector does on .NET assemblies. |
|||||||||
|