Hello everyone,
I am using Windbg to diassemble managed code (written in C#, console application) using Windbg's !U command from sos.dll. I find when using !U to diassemble a managed function, the diassembled IL code only contains function calls I made, and for remaining parts (non-function call C# code), for example a=a*2, and foreach loops in C#, only native assembly language code is shown, is that the correct expected behavior?
My quesition is, I want to know whether !U is capable of diassemble managed code binary DLL into IL with all code (besides function call code)?
thanks in advance, George