Hi, I have to do several long iterations in a not so powerfull device and I'm a bit worried about performance.

What's better? use a normal for or use foreach instead. For example, iterating all over a list.

Foreach seems to be the answer... but it makes a copy, so it needs extra memory.

thanks!