Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
PowerShell example using an enumerator type to map colour name to value
$colourName = 'green'
# Only needs to be declared once
enum colour {
red = 0xFF0000
green = 0x00FF00
blue = 0x0000FF
white = 0xFFFFFF
}
return ([colour] $colourName).value__
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment