Tagged Questions

0
votes
2answers
309 views

How to sort List<List<UInt32>> according to List<UInt32>[0] number ASC/DESC in C#?

How shall sort this in ASC order? I got List<List<UInt32>> full of records of List<UInt32> and I want those records to be sorted according to the first column in each record - the ...