Question:
Today on powershell.com
http://powershell.com/cs/blogs/tips/archive/2011/04/26/dump-enumerations.aspx
I’ve found this tip
1 2 3 4 5 |
function Get-Enum($name){ [Enum]::GetValues($name) | Select-Object @{n="Name";e={$_}},@{n="Value";e={$_.value__}} | format-table -autosize } |
Can someone explain me what’s the meaning of $_.value__
?
Thanks.
Answer:
I would say this is kind of a hacky way to get the underling value of a enum. Here is the related question and answer:
What is the purpose of the public “value__” field that I can see in Reflector against my enum?