4 lines
99 B
PowerShell
4 lines
99 B
PowerShell
|
|
$queue = New-Object -TypeName System.Collections.Queue
|
||
|
|
#or
|
||
|
|
$queue = [System.Collections.Queue] @()
|