I'm trying to show the list, but this time I want to show in the list the numbers in the same descending order and the amount of times they have been appeared.
Example:

Number 5 -> 45 times
Number 6-> 32 times
Number 17 ->19 times
etc..

I've tried this but it seems it doesn't works:
Code:
        For Each Counts In Group_Count.ToList
            Me.Label1.Text += String.Concat(Counts.ax, " (", MyNumberMatrix.Item(Counts.ax), ")", vbCrLf)
        Next
How can I solve that?