I am trying to do a bit of disassambly on a dll I made a while ago which contain key functions that I can not remember which I need for a new project, however, whenever I try to open it on the Reflector I get:
It is strange consider it I did not protect it against reverse engineering or anything, and it was made useing visual c++ 2008 express edition
Comments
4 comments
-
Reflector disassembles managed code (CLI). It doesn't work for unmanaged C or C++ code.
-
This is correct. Reflector only works on .NET assemblies. It will disassemble managed C++, but not unmanaged C or C++.
-
but if the program compiled b .net ??
any ideas?? -
if compiled on VS.NET and u got this messy means that author used a protector! (obfuscator OR compressor)
Add comment
Please sign in to leave a comment.