Json deserialize from wikipedia api with c#
问题 I have a wikipedia api with json format. Now I want to get the extract information from this api. I want to make it dynamic for any wikipedia api. [My wikipedia api][1]. I got following information from jsontoCsharp namespace Json_deserialize { public class pageval { public int pageid { get; set; } public int ns { get; set; } public string title { get; set; } public string extract { get; set; } } public class Query { public Dictionary<string, pageval> pages { get; set; } } public class Limits