C#的一个解析JSON的工具类,像java一样优雅的解析JSON数据,包含有JSONObject和JSONArray对象。 JSONObject json = new JSONObject(); json.Put("sex", "男"); json.Put("age", 123); json.Put("name", "张三"); JSONArray array = new JSONArray(); array.Put(json); Console.WriteLine(array.GetJSONObject(0).GetString("name")); JSONObject json = ne