Summary: Learn how to view properties and the associated values of those properties of .NET Framework classes with Windows PowerShell.
How can I use Windows PowerShell to view the properties and their values from a .NET Framework class,
such as System.String?
Use the Type accelerator [string], pipe the output to the Format-List cmdlet, and use an asterisk to
select all properties:
[string] | fl *
Note: fl is an alias for Format-List.