Well, you could simply use an integer which holds the value of whose turn it is:
VB Code:
  1. 'suppose 4 players
  2. Dim NextPlayersTurn As Integer = 1
  3.  
  4. 'on next turn
  5. If Not NextPlayersTurn = 4 Then
  6. NextPlayersTurn += 1
  7. Else
  8. NextPlayersTurn = 1
  9. End If

Now I don't know what you are planning on storing in the array... but if it something like a Player class ... where each instance
describes a certain player....

You would probably want to make a collection of Players... and simply iterate through the collection on each, and reset to the first element after the last player's turn...