Advertisement
pszczyg

Untitled

May 2nd, 2016
854
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1.             var list = new List<int>();
  2.             for (int index = 0; index < list.Count; index++)
  3.             {
  4.                 var item = list[index];
  5.                 if (VeryRareCondition(item))
  6.                     DoSomethingVeryRare(x => x*item);
  7.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement