I am using ILSpy to try to debug a running application. I saw this in an earlier Stackoverflow question a link! which had a picture of a Debugger menu. When I load ILSpy the only menus I see are File, View, and Help. How can I see the Debugger menu?
Asked
Active
Viewed 1,195 times
4
-
They were talking about the preview version of ILSpy. Afaik the feature was removed in the release version, too buggy probably. Reflector has it. – Hans Passant Mar 22 '15 at 13:05
-
I downloaded Reflector, but I don't see a Debugger menu. The only menus are File Edit View Tools Help. I can load a DLL and see all the functions, but what I want to do is see what function call get called when I choose a menu command from the running program (this is a 3rd party application). – user3229570 Mar 22 '15 at 14:10
2 Answers
0
Debugger is available for preview version of ILSpy, which they later removed. Don't know the reason behind it.
Alternatively you can use Reflector by RedGate or dotPeek by JetBeans or JustDecompile by Telerik

user3468080
- 15
- 4
0
Found the following explanation on github:
ILSpy 2.x used to have an experimental debugger; but it was too much work to maintain a debugger engine in addition to the decompiler engine, so we dropped that approach
https://github.com/icsharpcode/ILSpy/issues/1427#issuecomment-464769024

ogrim
- 968
- 9
- 17