How to use fastJSON (or some other JSON lib, possibly) to dump some data into a dictionary format, e.g. {"key1": "valstring", "key2": 1234}
?
If I try to dump Dictionary<string, Object>
I get something like [{"k":"key1","v":"valstring"},{"k":"key2","v":1234}]
instead.