I have some teams:
int[] numbers = new int[4];
string[] Teams = {"Team1", "Team2", "Team3","Team4"};
they all start with 0 points
Team1 0
Team2 0
Team3 3
Team4 0
if a team wins gets 3 b.v:(Team1 vs Team3) Team3 won the game. he gets to the top of the bord. then team wins ...
Team3 3
Team1 0
Team2 0
Team4 0
I can't find a way to get the string array with the highest int array on top. in the rith order. IT HAS TO BE WITH ARRAY'S.