Is there any C# decompiler that can show the coding almost identically to how it was written?

前端 未结 5 1435
囚心锁ツ
囚心锁ツ 2021-01-29 15:20

I\'ve been using reflector to decompile a couple simple c# apps but I notice that though code is being decompiled, I still can\'t see things as they were written on VS. I think

5条回答
  •  一整个雨季
    2021-01-29 15:50

    No, nor should there ever be. Things like comments and unreachable code would just add bloat with absolutely zero benefit. The very best you can ever do is approximate the compiled code.

提交回复
热议问题