Summary: Learn how to use Windows PowerShell to display properties of a .NET Framework class.
How can I use Windows PowerShell to easily display properties of a .NET Framework class?
Pipe the type accelerator to the Get-Member cmdlet and specify the MemberType property,
for example:
[string] | gm -MemberType Properties
Note: gm is an alias for Get-Member.