要
"Items"使用
Dictionary<string, List<Info>>,即:
class Response{ public Dictionary<string, List<Info>> Items { get; set; } public string[] Errors { get; set; }}class Info{ public string Prop1 { get; set; } public string Prop2 { get; set; } public int Prop3 { get; set; } public bool Prop4 { get; set; }}假设项目名称
"Item322A"和
"Item2B"随响应而变化,并且将这些名称作为字典键读取。
样品提琴。



