Summary: Use Windows PowerShell to create a hash table that holds all ASCII lowercase letters.
How can I use Windows PowerShell to create a hash table that holds all lowercase ASCII letters?
Create an empty ordered dictionary, and then use the add method to add the numbers 97-122
as keys and the [char] associated with the number as the value, for example:
$a = [ordered]@{}
97..122 | foreach-object {$a.Add($_,[char]$_)}