Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PlagueHO/56eaf0542ae584e21e1c189c26623594 to your computer and use it in GitHub Desktop.
Save PlagueHO/56eaf0542ae584e21e1c189c26623594 to your computer and use it in GitHub Desktop.
PowerShell example using a hash table to map colour name to value
$colourName = 'green'
$colourMap = @{
red = 0xFF0000
green = 0x00FF00
blue = 0x0000FF
white = 0xFFFFFF
}
$colourValue = $colourMap[$colourName]
return $colourValue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment