JSON .net, Properties() dict, :
type ByProv = JsonProvider<"""{"dict":{"A":1,"B":2}}""">
let text = """{"dict":{"C":3,"D":4}}"""
let prov = ByProv.Parse text
let d = prov.Dict.JsonValue.Properties() |> dict
d System.Collections.Generic.IDictionary<string,JsonValue>. , , Seq.map :
let d =
prov.Dict.JsonValue.Properties()
|> Seq.map (fun (k,v) -> k,v.AsInteger())
|> dict