Visual Studio package - how can I get information in the locals window?

I have a VSPackage that I would like to get information similar to that shown in the locals window in debug mode (variable values ​​for the current context).

I experimented with an instance of DTE.Debugger.CurrentStackFrame, which looked interesting because it expanded the arguments and local collections of expressions. However, I see no way to get the value of an expression as an object - the Value property just looks like a ToString value.

+3
source share
2 answers

. , , VS. . Visual Studio API CLR, . , , VS.

+5

Visualizer Visualizer. .

0

Source: https://habr.com/ru/post/1730882/


All Articles