Каким образом парсить ответ в виде Json? - C#
Формулировка задачи:
Добрый день сегодня столкнулся с проблемой получаю ответ от сервера в виде Json строки как ее парсить ?
Решение задачи: «Каким образом парсить ответ в виде Json?»
textual
Листинг программы
var objectdata = JsonConvert.DeserializeObject<Mydata>(jsonstring);
public class Mydata
{
public int Gold { get; set; }
public int Silver { get; set; }
public bool Stop { get; set; }
public List<Achievement> Achievements { get; set; }
}
public class Achievement
{
public int Id { get; set; }
public int Level { get; set; }
public int Counter { get; set; }
public int Counter_to_complete { get; set; }
public int Reward { get; set; }
public string Currency { get; set; }
}