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

ratty picture ratty · Sep 15, 2010 · Viewed 8.4k times · Source

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

Answer

Darin Dimitrov picture Darin Dimitrov · Sep 15, 2010

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.