I have a method like:
object bibble()
{
return GetFishsticks();
}
I go through the code to the return line and press F10 to go to the next line ... so the selected line is on the button}
I would like to see that coming back, but I can’t figure out how to do this. Is there any way to see this?
Edit (by Doc Brown): sometimes it bothers: is there a way to check the return value without changing the code and not call it GetFishsticksagain to avoid possible side effects?
source
share