我正在使用 powershell 5。我在不同的 ps1 文件中创建了一个枚举,我喜欢将它加载到另一个具有 CmdletBinding 的 ps1 中。
我尝试了下面的代码,但没有奏效。有没有办法在 CmdletBinding 之前加载枚举 ps1?
. ".\GeneratorType.ps1"
[CmdletBinding()]
Param
(
[Parameter(ValueFromPipeline=$True,ValueFromPipelineByPropertyName = $True,Mandatory=$False)]
[GeneratorType]$type = [GeneratorType]::All
)