Powershell尝试捕获VSCode智能感知语法问题

hkmswyz6  于 2022-12-18  发布在  Shell
关注(0)|答案(1)|浏览(118)

我以前没有见过这种语法,而且很难搜索到,所以我在这里问一下:{1:在中的含义是什么

try {
    
}
catch {
    {1:<#Do this if a terminating exception happens#>}
}
pb3skfrl

pb3skfrl1#

try-catch代码段中存在一个错误,导致生成错误文本。它应该是:

try {
    
}
catch {
    <#Do this if a terminating exception happens#>
}

来源:https://github.com/PowerShell/vscode-powershell/issues/3964

相关问题