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