I have the following Json collection and I need to represent it as a .Net collection. Esentially it is a key-value pair list with the keys (col) possibly having dublicates (dictionary is out at this stage).
I sorting and grouping would be nice but not essential. Can any help identify what the best .Net enumeration would be the best fit please?
[
{
"col": "thiscol",
"val": "thisval"
},
{
"col": "thiscol",
"val": "thisval2"
},
{
"col": "thiscol2",
"val": "thisval2"
},
{
"col": "thiscol3",
"val": "thisval3"
}
]