PowerShell arry initialise ajouter

$al = New-Object System.Collections.ArrayList
for($i=0; $i -lt 5; $i++)
{
    $al.Add($i)
}
Awful Armadillo