8
0
Skriptentwickung/test/array-test1.ps1
2024-01-24 16:42:38 +01:00

15 lines
386 B
PowerShell
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[System.Collections.ArrayList]$test1 = @("eins","zwei","drei")
foreach ($d in $test1) {
Write-Host $d
}
$test1.Insert(1, "vier")
foreach ($d in $test1) {
Write-Host $d
}