Functions/Test-HashTableInput.ps1
Function Test-HashTableInput { Param ( [Parameter(Mandatory)][hashtable]$HashTable ) Write-Verbose "HashTable is: $HashTable" [int]$I = 1 $HashTable } |
Function Test-HashTableInput { Param ( [Parameter(Mandatory)][hashtable]$HashTable ) Write-Verbose "HashTable is: $HashTable" [int]$I = 1 $HashTable } |