我正在编写一个write-host
用于输出另一个 powershell 脚本的 powershell 脚本。如何写出包含美元符号的值为 $true(或 $false)的布尔参数:
param
(
[switch] $myParam = $true
)
Write-Host My Param is $myParam
我需要这个来准确输出
My Param is $True
但它输出
My Param is True
我正在编写一个write-host
用于输出另一个 powershell 脚本的 powershell 脚本。如何写出包含美元符号的值为 $true(或 $false)的布尔参数:
param
(
[switch] $myParam = $true
)
Write-Host My Param is $myParam
我需要这个来准确输出
My Param is $True
但它输出
My Param is True