我的班级档案的一部分
namespace Calendar
{
class CalendarModel
{
[JsonProperty("name")]
public string name { get; set; }
在我的实现文件中,我声明了一个私有变量
private List<CalendarModel> people;
在方法中,我使用此代码获取我的JSON对象
people = JsonConvert.DeserializeObject<List<CalendarModel>>((string)fileContainingJSONObject);
我如何创建一个人数组?那我将如何访问其成员(稍后)?
答案 0 :(得分:2)
只需声明CalendarModel列表列表
即可var crowd = new private List<List<CalendarModel>>();
...
people = JsonConvert.DeserializeObject<List<CalendarModel>>((string)fileContainingJSONObject);
crowd.add(people)
访问CalendarModel
对象的属性:
crowd[peopleIndex][calendarModelIndex].name