我的代码:
List<string[]> records=new List<string[]>();
.....
....
#Now i has list in records
var sortedRecords = records
.OrderBy(o => o[0])
.ThenBy(t=>t[3])
.ToList();
.....
我想按 [0] 元素分组,按每个组中的 [3] 元素排序。我没有得到正确的输出。怎么了?