Skip to content

Instantly share code, notes, and snippets.

@PlagueHO
Last active August 18, 2019 07:56
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/e6c2ab0bb956b300d1969c3be06b5f3f to your computer and use it in GitHub Desktop.
Save PlagueHO/e6c2ab0bb956b300d1969c3be06b5f3f to your computer and use it in GitHub Desktop.
PowerShell example using switch statement to map colour name to value
$colourName = 'green'
$colourValue = switch ($colourName) {
'red' { 0xFF0000; break }
'green' { 0x00FF00; break }
'blue' { 0x0000FF; break }
'white' { 0xFFFFFF; break }
default { 0x0 }
}
return $colourValue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment