Hi I want to convert json from one format to another like below.My Json format is like below I tried using Json.Net plugin.but couldn't find solution
[
{
"bundleKey": "title",
"bundleValue": "Manage cost code",
},
{
"bundleKey": "name",
"bundleValue": "steve",
}]
Want to convert in the following format
[{"title":"Manage cost code"},{"name":"steve"}]
I am tried using following link