When you want to perform some processing on all elements of a List<T> or an array in C# in order, the most standard way is to use the "foreach loop" syntax (foreach (var item in list)). However, the ...