microsoft / vscode-mono-debug

A simple VS Code debug adapter for mono
Other
159 stars 173 forks source link

Attempting to use the debug console to access classes or namespaces results in an "Unknown Identifier" error #45

Open SwooshyCueb opened 6 years ago

SwooshyCueb commented 6 years ago

When stopped at a breakpoint or exception (or wherever one would typically be able to use the debug console), one is able to use the debug console to make calls and probe around in the current state of the suspended program.

Unfortunately, it would seem that anything outside of the class in which execution was suspended is not accessible. I can access local variables that are in scope, as well. But trying to access anything in another class or namespace results in an unknown identifier error.

image