February 2019
Intermediate to advanced
626 pages
15h 51m
English
Elements within a list may be changed by assigning a new value to a specific index, as in the following example:
$list = New-Object System.Collections.Generic.List[Int]$list.AddRange([Int[]](1, 2, 2, 4)) $list[2] = 3
Read now
Unlock full access