我正在尝试为哈希表设置多个值并手动添加数据。 像这样:
$hash = $null
$hash = @{AppName = "1"; AppLocator = "11"; Id = "22"; ServerDB = "121"; ServerApp = "12"; Database = "121"}
$hash += @{AppName = "test"; AppLocator = "1dsdf1"; Id = "22fdsd"; ServerDB = "1sdfds21"; ServerApp = "12"; Database = "121"}
$hashes += $hash
$hashes
但是我只得到第一组数据。 我也尝试通过$ hash.Add但没有运气。
谢谢