That list is excellent! Where did you get it?
The @eax part of my question concerns this situation:
Let's say you have this method in your code.
public int MyFunc()
{
return FnA() + FnB();
}
In unmanaged C++, you could put a breakpoint on the closing curly brace, type @eax in the watch window, and you would see the result of 'FnA() + FnB()'.
A workaround is to assign the return value of MyFunc() to a variable and to type the name of the variable into the watch window.
public int MyFunc()
{
var result = FnA() + FnB();
return result;
}
While this is quite easy to do, not everyone does it. @eax was a great way to see the return value before you exited any function that returned a DWORD.
Thanks a lot for that list!