In C #:
List<List<Point>> SectionList = new List<List<Point>>();
The List section contains lists of points at which each additional list depends on the number of points contained in it.
What I'm trying to understand is to sort the List section by counting subscriptions in descending order.
So, if there were 3 point lists in the SectionList, after sorting, the List [0] section will contain the highest Count value for all 3 lists.
Thanks Mythics
source share