How can I programmatically access Visual Studio 2013's Return Values that appear in the Autos Window?

180 Views Asked by At

Visual Studio 2013 has the capability of showing the return values of every method in the statement that's been stepped over. They appear in the autos window. My question is, how can I programmatically obtain them, using VS-SDK (as IDebugProperty2's) or as EnvDTE.Expression's? Is there an API for this?

I know I can evaluate "$ReturnValue" to get the last return value, but I'd like to obtain all the return values of the method we just stepped over, including their names.

0

There are 0 best solutions below