StackOverflow 文件 PowerShell 教程 雜湊表 按鍵訪問雜湊表值 按鍵訪問雜湊表值 Created: November-22, 2018 定義雜湊表並通過金鑰訪問值的示例 $hashTable = @{ Key1 = 'Value1' Key2 = 'Value2' } $hashTable.Key1 #output Value1 訪問具有屬性名稱的無效字元的鍵的示例: $hashTable = @{ 'Key 1' = 'Value3' Key2 = 'Value4' } $hashTable.'Key 1' #Output Value3 建立雜湊表雜湊表