Reputation: 148744
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: 117360
ILSpy version 2 onwards does this.
Just grab the latest copy from the build server.
Reputation: 499382
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