ps/Modules/Cole.PowerShell.Developer/Public/New-List.ps1
2023-05-30 22:51:22 -07:00

9 lines
157 B
PowerShell

function New-List {
<#
.SYNOPSIS
Returns a new ArrayList
#>
[CmdletBinding()]
param()
(New-Object -TypeName "System.Collections.ArrayList")
}