Skip to content

Instantly share code, notes, and snippets.

@irwins

irwins/Enum.ps1 Secret

Last active January 7, 2016 15:20
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 irwins/2db8f0978fc00560d3c8 to your computer and use it in GitHub Desktop.
Save irwins/2db8f0978fc00560d3c8 to your computer and use it in GitHub Desktop.
PizzaSize Enumeration
Enum PizzaSize {
Small = 10
Medium
Regular
Large = 3
ExtraLarge = 4
}
function Get-PizzaSize{
param(
[PizzaSize]
$PizzaSize
)
"You chose $PizzaSize"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment