问题 Question: Given to object FooBar that contains a List of Bar , with FooBar and Bar define as such: class FooBar{ int FooID {get;set;} string FooProperty1 {get;set;} List<Bar> Bars {get;set;}; } class Bar{ int BarID {get;set;} string BarProperty1 {get;set;} string BarProperty2 {get;set;} string BarProperty3 {get;set;} } I get the following CSV as input: 1,FooProperty1,BarID_1,BarProperty1_1,BarProperty2_1,BarProperty3_1,BarID_2,BarProperty1_2,BarProperty2_2,BarProperty3_2 Where the field BarID