Hashtable

[ordered]@{a=1;b=2;c=3}

Экспорт и импорт в файл

#Import HashTable from file PS 5.1
$ImportChecksums = Import-Csv $MyDatabase | ForEach-Object {
    $MyDatabaseItems1.Add($_.Name, $_.Value)      
}
 
#Export HashTable to file PS 5.1
$MyDatabaseItems.GetEnumerator() | Select-Object Name,Value | Export-Csv $MyDatabase -Encoding UTF8 -NoTypeInformation