Is it possible to get a method\'s return value in the Visual Studio debugger, even if that value isn\'t assigned to a local variable? For example, I\'m debugging the follow
You can always use your watch box to evaluate function calls.
Foo(valueIn);
This will only work if your Proxy.Bar(valueIn) is time independent though.