Search code examples
.netc++dllreflector

Is there any concept in c++ like reflector in .Net?


i like to get code from c++ dll ,i know we easily get from .Net dll by reflector. Is there any method available in c++ for this?

Thanks In Advance


Solution

  • C++ is compiled directly to machine code. There's no intermediary language as in .NET. There are some C++ disassemblers you may take a look at. Hex-Rays decompiler is particularly good.