I have moderate experience with VB, and am using 4.0 framework with VS 2010 pro.
Does anyone suggest a specific way i should accomplish a leader board system where it can manually assign points to players and sort them accordingly.
Thanks in advance
Printable View
I have moderate experience with VB, and am using 4.0 framework with VS 2010 pro.
Does anyone suggest a specific way i should accomplish a leader board system where it can manually assign points to players and sort them accordingly.
Thanks in advance
You can define a class or structure to store the score and the player information in properties. The player information might itself be another class or structure. You can then add multiple instances of your type to an array or collection and then sort that. To find out more about the sorting, follow the Blog link in my signature and check out my three-part post on just that. They are the three oldest posts.