I want to get a JSON representation of a Hashtable such as this:
@{Path="C:emp"; Filter="*.js"}
ConvertTo-Json
results in:
{
"Path": "C:\temp",
"Filter": "*.js"
}
However, if you convert that JSON string back with ConvertFrom-Json
you don't get a HashTable but a PSCustomObject.
So how can one reliably serialize the above Hashmap?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…