📌  相关文章
📜  参数 powershell - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:44.244000             🧑  作者: Mango

代码示例1
Param (
    [Parameter(Mandatory=$True, Position=1)]
    [string]$String,
    
    [Parameter(Mandatory=$True)]
    [int]$Int,
    
    [switch]$Switch = $false
)