This one stumped me for a minute – how do you find static members of a given type? Get-Member by default only shows the instance members.
The trick is to use the flag -static with Get-Member, to tell PowerShell that you want only static members.
Example:
[Convert] | gm -static









