Last active
January 18, 2020 18:29
Revisions
-
Packet-Lost revised this gist
Jan 18, 2020 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -12,8 +12,8 @@ function Show-ThisPsOddity { } "Before the loop `$UserInput is $UserInput of type $(if($UserInput -is [array]){$UserInput.GetType().BaseType}else{$UserInput.GetType()})" foreach($item in $UserInput) { "In the loop `$item is $item of type $(if($item -is [array]){$item.GetType().BaseType}else{$item.GetType()})" } } -
Packet-Lost created this gist
Jan 18, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ function Show-ThisPsOddity { param( [Parameter(Mandatory=$true)][ValidateNotNullOrEmpty()][ValidateSet("foo", "bar", "baz", "match")][String]$UserInput, [ValidateRange(1,2)][int]$Variant = 1 ) switch($variant) { 1 { if($UserInput -eq "match"){ $UserInput = @("foo", "bar", "baz") } } 2 { if($UserInput -eq "match"){ [array]$UserInput = "foo", "bar", "baz" } } } "Before the loop `$UserInput is a $(if($UserInput -is [array]){$UserInput.GetType().BaseType}else{$UserInput.GetType()})" foreach($item in $UserInput) { "In the loop `$item is a $(if($item -is [array]){$item.GetType().BaseType}else{$item.GetType()})" } }