tomasslavicek

Extension metoda SmartMania.cz oprava

Oct 29th, 2011
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1. int j = 0;
  2. for (int i = 0; i < list.Count; i++)
  3. {
  4.     if (!predicate(list[i]))
  5.     {
  6.         list[j] = list[i];
  7.         j++;
  8.     }
  9. }
  10. for (; j < list.Count; j++)
  11. {
  12.     list.RemoveAt(j)
  13. }
  14.  
  15. // http://smartmania.mobilmania.cz/clanky/vyvijime-pro-wp-v-xna-vykresleni-vyber-a-pohyb-objektu-7-dil-1544
Advertisement
Add Comment
Please, Sign In to add comment