You can use LINQ’s OrderBy. You’ll need to import using System.Linq;
Appoitments.OrderBy(a => a[0]));
0
solved Sorting of a list of list of integer
You can use LINQ’s OrderBy. You’ll need to import using System.Linq;
Appoitments.OrderBy(a => a[0]));
0
solved Sorting of a list of list of integer