 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to convert Dictionary to Hashtable in PowerShell?
Like any other data type conversion in PowerShell, we can convert Dictionary to hashtable in a similar way. We have a below Dictionary for the example called $CityData.
Key Value --- ----- India 91 Austria 43
Its datatype is Dictionary,
Example
PS C:\> $citydata.GetType() | ft -AutoSize
Output
IsPublic IsSerial Name BaseType -------- -------- ---- -------- True True Dictionary`2 System.Object
To convert it to the hashtable,
$hash = [Hashtable]$citydata
Or
$hash = [System.Collections.Hashtable]$CityData
Datatype:
PS C:\> $hash | ft -AutoSize
Output
Name Value ---- ----- Austria 43 India 91
Advertisements
 