ASKER
C# is an object-oriented programming language created in conjunction with Microsoft’s .NET framework. Compilation is usually done into the Microsoft Intermediate Language (MSIL), which is then JIT-compiled to native code (and cached) during execution in the Common Language Runtime (CLR).
TRUSTED BY
ASKER
so for each int in an array or collection is the phrase for 'foreach'.
So, in practice, I can loop through for the following:
for(int i = 0;i i < 100; i++)
with for each.
Kind regards.