Royi Namir
Royi Namir

Reputation: 148524

Debugging .net at runtime?

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

Answers (2)

leppie
leppie

Reputation: 117230

ILSpy version 2 onwards does this.

Just grab the latest copy from the build server.

Upvotes: 2

Oded
Oded

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

Related Questions