RosettaCodeData/Task/Associative-array-Iteration/PowerShell/associative-array-iteration-3.ps1
2026-04-30 12:34:36 -04:00

3 lines
84 B
PowerShell

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