Reflection/List properties: Difference between revisions

m
Line 209:
In PowerShell '''everything''' is an object. To find any type of member of any object use the <code>Get-Member</code> Cmdlet.
 
Here we find the properties of a <code>[DateTime]</code> object:
<lang PowerShell>
Get-Date | Get-Member -MemberType Property
308

edits