Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this code that removes a player if the player is not alive, but I figured the problem is to do with the foreach loop. I've seen solutions involving making new lists, but I cannot see how I can apply it to my code. Can anyone please shed some light?

private Dictionary<int, Player> numPlayers = new Dictionary<int, Player>();

private void CheckPlayers()
{
    foreach (Player player in numPlayers.Values)
    {
        if (!player.isAlive)
        {
            canvas.Children.Remove(player.hand);
            numPlayers.Remove(player.id); // breaks here
        }
    }
}
share|improve this question

3 Answers

up vote 3 down vote accepted

Query the collection for the players to delete:

var playersToDelete = numPlayers.Values.Where(p => !p.isAlive).ToList();

Then delete the players:

foreach(var player in playersToDelete) {
    canvas.Children.Remove(player.hand);
    numPlayers.Remove(player.id);
}
share|improve this answer
I cannot seem to be able to resolve Where - I'm not sure which reference I might be missing? – Mike Mar 15 '12 at 19:20
1  
You need a using for System.Linq. I imagine you already have the reference to System.Core. – Jason Mar 15 '12 at 19:24

You can't modify the collection you are iterating over with foreach. What you need to do is add the items you want to remove to a new list, then once that list is built remove them.

var dead = numPlayers.Values
    .Where(p => !p.isAlive)
    .ToList();

foreach(var player in dead)
{
    canvas.Children.Remove(player.hand);
    numPlayer.Remove(player.id);
}
share|improve this answer
I cannot seem to be able to resolve Where - I'm not sure which reference I might be missing? – Mike Mar 15 '12 at 19:19
1  
you need a using System.Linq; – James Michael Hare Mar 15 '12 at 19:36

You should remove the elements of a collection using a reverse for:

for(int i = numPlayers.Values.Count - 1; i <= 0; i--)
{
//Remove it.
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.