Skip to content

Instantly share code, notes, and snippets.

@PrateekKumarSingh
Created October 4, 2019 12:28
Show Gist options
  • Save PrateekKumarSingh/3122384da6ba6ec7f16ea8c99bb809f1 to your computer and use it in GitHub Desktop.
Save PrateekKumarSingh/3122384da6ba6ec7f16ea8c99bb809f1 to your computer and use it in GitHub Desktop.
# Method 5 - Using strongly typed Dictionary
$Dictionary = New-Object 'System.Collections.Generic.Dictionary[String,String]'
$Dictionary['First'] = 'Prateek'
$Dictionary['Last'] = 'Singh'
$Dictionary['Age'] = 29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment