Does multidimensional array enumerator guarantee the same order for all implementations?

Viewed 59

Will this always print elements in the same order on all platforms?

foreach (var el in multidimArray) Console.WriteLine(el);

I'm looking for a quote from the specifications or anything official.

1 Answers
Related