PoshCode Archive  Artifact [0d94df242d]

Artifact 0d94df242d81854dcaf2ea64d754ea5a107305a05eb90f11e433cb13dd7504ba:

  • File Get-Constructor.ps1 — part of check-in [08b790e878] at 2018-06-10 12:56:57 on branch trunk — Enumerates the constructors of a type with the parameters that they take, so you can figure out what your options are when calling New-Object. (user: Joel Bennett size: 661)

# encoding: ascii
# api: powershell
# title: Get-Constructor
# description: Enumerates the constructors of a type with the parameters that they take, so you can figure out what your options are when calling New-Object.
# version: 0.1
# type: function
# author: Joel Bennett
# license: CC0
# function: Get-Constructor
# x-poshcode-id: 1368
# x-archived: 2017-02-27T18:39:29
# x-published: 2010-10-04T20:44:00
#
#
function Get-Constructor {
PARAM( [Type]$type )
$type.GetConstructors() | 
	Format-Table @{
		l="$($type.Name) Constructors"
		e={ ($_.GetParameters() | % { $_.ToString() }) -Join ", " }
	}
}

Set-Alias gctor Get-Constructor