I can remember that I could see the return value of a method when I debug a C++ code in Visual Studio 6.0.
Now I am missing that feature at C# in Visual Studio 2010.
Where can I see the return value or is there a cause for not showing it?
Edit1: An example:
string GetFullName()
{
return GetFirstName() + " " + GetLastName();
}
When I step (debugger) from row beginning with return to next line I would like to see the full name in a debug variable window.
This was added in Visual Studio 2013:
The return value(s) get displayed in the “Autos Windows” (Debug->Windows->Autos) and you can also use the pseudo variable “$ReturnValue” in the Watch and/or Immediate window to fetch the last function’s return value.
http://blogs.msdn.com/b/visualstudioalm/archive/2013/06/27/seeing-function-return-values-in-the-debugger-in-visual-studio-2013.aspx
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With