2012年3月31日 星期六

hash table example in powershell


$h = @{a=1;
             b=2;
  c=3}

foreach ($pair in $h.GetEnumerator())
 {
 $pair.key + " is " + $pair.value
 }


result:

a is 1
b is 2
c is 3





沒有留言: