示例#1
0
        public NewsResponse(string body) : base(body)
        {
            JSONArray arr = (JSONArray)this.ReturnData;

            foreach (JSONObject e in arr)
            {
                NewsTopicRecord record = new NewsTopicRecord();
                record.FieldsFromJSONObject(e);
                newsTopicRecords.AddLast(record);
            }
        }