Decompile C# vs C++ -
i have read many posts decompiling (though no experience) did not understand why of them mentioned easier decompile c# c++ executable. explain difference?
c# compiles cil, not directly native code c++ compiler do.
it produces .net assembly, contains more meta data c++ executable (via embedded manifest) - metadata types contained in assembly, references , more, making easier decompile "normal" executable.
as noted in comments, cil in , of higher level language assembly , object oriented language, making easier understand , decompile correctly.
Comments
Post a Comment