Reputation: 148524
Is there a tool which can debug my program at RUNTIME ? ( like ildasm / reflector) in runtime.
(vs doesnt help me much here)
I need to see the CIL in runtime
Upvotes: 2
Views: 789
Reputation: 117230
ILSpy version 2 onwards does this.
Just grab the latest copy from the build server.
Reputation: 499002
Take a look at windbg - it will not be interactive during runtime, but you can cause a memory dump when you need and use windbg to query it.
Upvotes: 1