vote up 6 vote down star

Take the following function:

DataTable go()
{
  return someTableAdapter.getSomeData();
}

When I set a breakpoint in this function, is there a possibility to inspect the returned value? The "go" function is directly coupled to a datagrid in an aspx page.

The only way to inspect the returned datatable, is to use a temporary variable... However, that's a bit inconvenient. Isn't there another way?

flag

65% accept rate

9 Answers

vote up 3 vote down

Not that I know of. Note that if you do add a variable, it will get removed by the compiler in release builds anyway...

link|flag
vote up -2 vote down

Why's that inconvenient? It's not as neat, but it's not difficult!

DataTable go()
{
  var rv = someTableAdapter.getSomeData();
  return rv;
}
link|flag
1  
Still looks inconvenient to me - especially if you don't know which return value you're going to need before you start debugging. I really don't want to have to have a temporary variable cluttering up my code every time I ever return anything. – Jon Skeet Nov 6 '08 at 9:53
vote up 0 vote down

You could try selecting "someTableAdapter.getSomeData();", right clicking on it and go for Quick Watch.

link|flag
vote up -1 vote down

You can also ask to evaluate the value in the intermediate window as well, if it does not set flags or other variables, but only returns something.

link|flag
Doesn't work with lambdas, screwing this solution royally :( – romkyns Nov 18 at 17:39
vote up 1 vote down

Step out of the go() method using Shift-F11, and then in the "Autos" debug window it will show the return value of the method call which just popped off the stack (in this case, the go() method which is what you want). This is the behaviour in Visual Studio 2005; I haven't used Visual Studio 2008 so I don't know if this behaves the same way in that version.

link|flag
I've tried this in both VS2005 and VS2008, but I don't really see it. I have the "Autos" window open, but when in the "go" function, the autos-window is just empty. Also when stepping out of the function (the closing curly brace of the function is yellow). Can you give me one more hint? – doekman Nov 6 '08 at 10:32
I would expect the Autos-window to be empty while INSIDE the go() function. You need to step COMPLETELY OUT of the function (i.e. the debug cursor should be pointing to the function which has CALLED go()) and then you should see the return value for go() in the Autos window. – LeopardSkinPillBoxHat Nov 6 '08 at 10:39
@LeopardSkinPillBoxHat: can't get this to work, even with your extra hint. Are you trying this in Visual Basic? It appears to have better support for observing and changing return values... – romkyns Nov 18 at 17:41
@romkyns - No, I did this with C++ code. – LeopardSkinPillBoxHat Nov 18 at 22:18
@romkyns - What shows up in the "Autos" window for you? Doesn't it show a line indicating what the last called function returned? – LeopardSkinPillBoxHat Nov 19 at 0:22
vote up 0 vote down

Open the Debug-Autos window gets you close. It won't show the actual return value, but will show what was evaluated in the return statement.

link|flag
Couldn't get VS2008 autos window to show anything like that. Could you please clarify? – romkyns Nov 18 at 17:40
vote up 0 vote down

The only way I know, is to place a breakpoint on the return line and then call the Quick Watch Window and enter the returned expression :

someTableAdapter.getSomeData();

But this only works if the call does not change the state of any object (since there will be a second call to the same method when you will resume the execution).

link|flag
This also only works if your expression doesn't have lambdas. – romkyns Nov 18 at 17:42
vote up -1 vote down

Drag and drop the return expression into a watch window.

Eg: In the statement

return someTableAdapter.getSomeData();

drag and drop

someTableAdapter.getSomeData()

into a watch window and you'll see the value.

You can do this for any expression.

link|flag
The problem with that: the expression is evaluated twice. – doekman Feb 9 at 8:03
1  
And watch expressions can't contain lambda expressions, which I use a fair bit. – Steve Crane Aug 17 at 14:31
vote up 1 vote down

There are a lot of work arounds, but none seems satisfactory.

In theory, the debugger could have a return-variable. After all: it's just a variable on the stack:

unsafe {
  int * sp = stackalloc int[1];
  try {
    return a+b;
  }
  finally {
    Trace.WriteLine("return is " + *(sp+3));
  }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.