|
|
|
|
|
by Dwedit
1148 days ago
|
|
There is a colossal difference between attempting to decompile a native binary (using a tool like Ghidra) and decompiling a .NET binary. .NET binaries contain all the information necessary to express the original program, except for local variable names. You are left with something highly readable that will build correctly. Unlike native code disassemblies which need to guess at data types and stack usage. |
|