ps/Modules/Cole.PowerShell.Developer/Public/New-List.ps1

9 lines
157 B
PowerShell
Raw Permalink Normal View History

2023-05-30 22:51:22 -07:00
function New-List {
<#
.SYNOPSIS
Returns a new ArrayList
#>
[CmdletBinding()]
param()
(New-Object -TypeName "System.Collections.ArrayList")
}