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