I need to convert to dictionary JSON array of objects with key "id" and value "score" properties like the following
[{"score":0.6990418,"id":"4833909335"},
{"score":0.8079009,"id":"4833874639"},
{"score":0.8079009,"id":"4834247506"}].
Dictionary keys should have values of "id" property, and dictionary values shoud be copied from "score".
Note that it is not a deserialization, but transforming/mapping when some information not copied to target object(e.g. names of properties and potentially other properties)
I found similar question How to deserialize the json array of objects to dictionary , that was incorrectly closed as duplicate of different question about deserializing different JSON object with multiple properties. I've tried to reopen it, but without success.