"Command: output 1" "-" * 25 $test1 = { 1..1000 | % { 1 } } $test2 = { for($i = 1; $i -le 1000; $i++) { 1 }} $results1 = (Measure-Command -Expression $test1).Ticks $results2 =(Measure-Command -Expression $test2).Ticks "{0}`t`t{1}" -f 'foreach',$results1 "{0}`t`t`t{1}" -f 'for',$results2 "" "{0}`t`t{1:N}" -f 'Difference',($results1/$results2) "" "Command: evaulate 1 -eq 1" "-" * 25 $test3 = { 1..1000 | % { 1 -eq 1 } } $test4 = { for($i = 1; $i -le 1000; $i++) { 1 -eq 1 }} $results3 = (Measure-Command -Expression $test3).Ticks $results4 =(Measure-Command -Expression $test4).Ticks "{0}`t`t{1}" -f 'foreach',$results3 "{0}`t`t`t{1}" -f 'for',$results4 "" "{0}`t`t{1:N}" -f 'Difference',($results3/$results4)
Command: output 1 ------------------------- foreach 903091 for 18212 Difference 49.59 Command: evaulate 1 -eq 1 ------------------------- foreach 907313 for 22254 Difference 40.77