нужно сериализовать список класса RootObject ,многое перепробовал не могу сериализовать побывал простой запись файл не выходит может чет подскажете ?
public class Section
{
public string type { get; set; }
public string group { get; set; }
public int count { get; set; }
public string name { get; set; }
public string displaytype { get; set; }
public List<object> data { get; set; }
}
public class RootObject
{
public string xmlns { get; set; }
public string status { get; set; }
public string version { get; set; }
public int webplayer { get; set; }
public string responsetype { get; set; }
public List<Section> sections { get; set; }
}
var obj = JsonConvert.DeserializeObject<RootObject>(bn);