#system.collections.queue
Explore tagged Tumblr posts
Text
The powershell queue collection
Today I want to quickly talk about the systems.collections.Queue collection. why should we care about the system.collections.Queue collection
Working with powershell, generally a simple array declared and used like this will generally be enough.
$array = @() $array += "Stéphane" $array += "van Gulick"
We then need to access our array via the index
PS C:\WINDOWS\system32> $array[1] van Gulick
View On WordPress
0 notes