Там не должно быть никаких проблем.
С десериализацией до List<customObject>
или List<Dictionary<string,string>>
с использованием Json. net library.
public class Data{
public string value{get;set;}
public string Type{get;set;}
}
var testClass = JsonConvert.DeserializeObject<List<Data>>(input);
Дамп объекта:
Dumping object(System.Collections.Generic.List`1[Data])
[
{
Type : Range
value : 123
},
{
Type : Fixed
value : 456
}
]
Или напрямую:
var testDict = JsonConvert.DeserializeObject<List<Dictionary<string,string>>>(input);
Результат:
Dumping object(
System.Collections.Generic.List`1[System.Collections.Generic.Dictionary`2[String,String]])
[
{
[
[value, 123]
,
[Type, Range]
] },
{
[
[value, 456]
,
[Type, Fixed]
]
}
]
Не забудь using Newtonsoft.Json;
LiveDemo