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

4 lines
84 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
foreach ($e in $h.GetEnumerator()) {
Write-Host Key: $e.Name, Value: $e.Value
}