Рассмотрим этот сценарий PowerShell:
[Hashtable] $t = @{}
function foo($x) { $x }
$t2 = foo $t
$t3 = {param([Hashtable] $x) [Hashtable]$x}.Invoke($t)
$t4 = $function:foo.Invoke($t)
Write-Host "argument type " $t.GetType()
Write-Host "function call " $t2.GetType()
Write-Host "script block Invoke " $t3.GetType()
Write-Host "function variable Invoke " $t4.GetType()
Какие результаты:
argument type System.Collections.Hashtable
function call System.Collections.Hashtable
script block Invoke System.Collections.ObjectModel.Collection`1[System.Management.Automation.PSObject]
function variable Invoke System.Collections.ObjectModel.Collection`1[System.Management.Automation.PSObject]
Почему блок сценария возвращает Collection
вместо Hashtable
?
Как чтобы блок сценария возвращал Hashtable
?
Используемая версия PowerShell:
$PSVersionTable
Name Value
---- -----
PSVersion 7.0.0
PSEdition Core
GitCommitId 7.0.0
OS Microsoft Windows 10.0.18363
Platform Win32NT
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…}
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
WSManStackVersion 3.0