Странная штука powershell... Простой скрипт:
$start = get-date
for($i=1; $i -le 1000000; $i++){}
$end = get-date
($end-$start).TotalMilliseconds
# $i.GetType()
Remove-Variable i
$start = get-date
for([int]$i=1; $i -le 1000000; $i++){}
$end = get-date
($end-$start).TotalMilliseconds
# $i.GetType()
Remove-Variable i
$start = get-date
for([int64]$i=1; $i -le
(
Read more... )