RosettaCodeData/Task/Associative-array-Iteration/PowerShell/associative-array-iteration...

4 lines
84 B
Plaintext

foreach ($e in $h.GetEnumerator()) {
Write-Host Key: $e.Name, Value: $e.Value
}