A long time ago I posted an article titled "debugging. NET Framework built-inProgramSet (system. Web. dll )"
Inevitably, it is very troublesome to use the roundtrip of DLL => IL => il '=> PDB + DLL.
Today, when you reflector something, you don't want to focus too much on the logic to directly view the keyCode:
Method 1: reflexil v0.8 add and modify il call directly
Before modification:
After modification:
Method 2: DLL => IL => il '=> PDB + DLL. You can use deblector for direct debugging in reflector.
Deblector does not need to debug PDB. I will not. But it should be okay. Which one can give you some advice ??
For detailed procedures, see the previous article I mentioned at the beginning.
Method 3: dile (DOTNET il Editor) v0.26
This powerful public capability, combined with reflector to find the key point, add Assembly directly, set the breakpoint,
Both attach and startup can be used to instantly run the target location. The parameters and variables called are clear !!
For the complete dile tutorial, click here.