For those who have no idea what I was talking about in my previous post (20060915).
That snip pet of code was showing how to remove an item on a collection based on a condition Person.IsTappable.
List.RemoveAll() is an alternative of this:
24 //...
25 for (int i = people.Count - 1; i >= 0; i--)
26 {
27 if (!((Person)people[i]).IsTappable)
28 {
29 people.RemoveAt(i);
30 }
31 }
32 //...
NYAHHHH!!!!
