Created
February 17, 2017 20:33
-
-
Save bozhink/c083e856900091fa3ca1654a804b4ada to your computer and use it in GitHub Desktop.
PowerShell: functions with code completion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
Import-Module *.psm1 | |
#> | |
function Select-Color | |
{ | |
param | |
( | |
[System.ConsoleColor] | |
$Color | |
) | |
"You selected: $Color" | |
} | |
function Select-City | |
{ | |
param | |
( | |
[ValidateSet('New York','Redmond','Hanover','Tokyo')] | |
$City | |
) | |
"You selected: $City" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment