c# - How can I display the value of the register EAX as an object in the debugger? -
without performing again the method I would like to inspect the return value of the method I believe that using Dissaimblr my only option I have come to this conclusion after reading the answers to the Stackflow question.
I believe that the EX can observe how I object indicated by EX in value register my return value debugger? Here is my forgotten return statement.
30: Return some string (); 000001bb mov ECX, DWORD ptr [EBP -3 CH] 000001be phone FFF7A320 000001c3 mov DWORD ptr [EBP -78 h], eax 000001c6 mov eax, DWORD ptr [EBP -78 h] 000001c9 mov DWORD ptr [EBP -4 CH], eax 000001cc nop 000001cd Jmp 000001D8 000001cf mov dword ptr [ebp-1Ch], 0 000001d6 jmp 000001BA 31:} 000001d8 mov eax, dword ptr [ebp-4Ch] 000001db lea esp, [ebp-0Ch] 000001de pop Ibeks 000001df pop esi 000001e0 pop edi 000001e1 pop EBP 000001e2 retired
ISTR [EAX]
Watch variable The window displays the EAX register
Comments
Post a Comment