在 Visual Studio 代码中观看 return-值
watching return-values in Visual Studio Code
调试时,是否可以在 VSC 中查看 return 值?如何?
我找不到一个选项来观察像 Visual Studio has
这样的自动变量
Visual Studio 代码最近支持这个 - 返回值可以在 "Local" 下找到:
使用 v1.44:
Reference $returnValue in Watches and Debug Console
When it's availble in the callstack, you can now reference the
function's $returnValue
in the debug console and watch expressions.
因此它可以在 Watch 视图和调试控制台中使用。
调试时,是否可以在 VSC 中查看 return 值?如何? 我找不到一个选项来观察像 Visual Studio has
这样的自动变量Visual Studio 代码最近支持这个 - 返回值可以在 "Local" 下找到:
使用 v1.44:
Reference $returnValue in Watches and Debug Console
When it's availble in the callstack, you can now reference the function's
$returnValue
in the debug console and watch expressions.
因此它可以在 Watch 视图和调试控制台中使用。