У меня есть следующий код и JSON:
public class Labels
{
public Labels()
{}
public Label[] Label {get;set;}
}
public class Label
{
public Label()
{ }
public string Name { get; set; }
public int TorrentsInLabel { get; set; }
}
//...
Labels o = JsonConvert.DeserializeObject<Labels>(json);
//...
{"label":
[
["seq1",1]
,["seq2",2]
]}
Я бы хотел, чтобы этот массив ["seq1", "1"] десериализовался в объект Label. Что мне не хватает? Некоторые атрибуты?
Когда я запускаю, я получаю исключение: ожидал JsonArrayContract для типа 'test_JSONNET.Label', получил 'Newtonsoft.Json.Serialization.JsonObjectContract'.
Тпй
1010 * гг *