Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. // Which one is more performant?
  2. foreach (Foo foo in someListOfFoo)
  3. {
  4. foo.Update();
  5. }
  6.  
  7. // Or...
  8. updateFoos();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement