Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In a coding standards document, I found this statement:

Avoid using foreach to iterate over immutable value-type collections. E.g. String arrays.

Why should this be avoided ?

share|improve this question
2  
If the coding standards document doesn't support its guidelines with citations and reasoning, it's even more worthless than most coding standards documents. And that's saying something. – T.J. Crowder Feb 16 '10 at 13:05
4  
I find it extra interesting that a string array is used as an example of an immutable value-type collection. – Fredrik Mörk Feb 16 '10 at 13:06
Both string and array are reference types ... – Brian Rasmussen Feb 16 '10 at 13:06
No reason I can think of... Unless of course you are actualy modifying the collection (Inserting or deleting...) Martin. – Martin Milan Feb 16 '10 at 13:08
1  
Wait a second - last updated 2007? So nothing about var? – Daniel Earwicker Feb 16 '10 at 13:35

3 Answers

up vote 17 down vote accepted

You shouldn't avoid it. The coding standard document you're reading is talking nonsense. Try to find the author and ask him to explain.

Aside from anything else, string is a reference type and arrays are always mutable... this makes me concerned about the quality of the rest of the document, to be honest. Are there any other suspicious recommendations?

(It's possible that "immutable" was meant to refer to the value type rather than the collection - the fact that it's ambiguous is another worrying sign, IMO.)

share|improve this answer
3  
And not only that but the only good value type is an immutable value type! – Daniel Earwicker Feb 16 '10 at 13:06
6  
A coding standards document talking nonsense? Stop the presses – T.J. Crowder Feb 16 '10 at 13:06
5  
If Jon Skeet says so then it is nonsense !!! – abmv Feb 16 '10 at 13:16
1  
Jon, I'm not suggesting that coding practices are bad - on the contrary, practices that help lead to consistency and comprehensibility are wonderful. However, I have observed that many times coding practices are used as a crutch in groups that have not necessarily invested the time to learn the platform and tool set - or as a hammer by managers to achieve some abstract sense of conformance to a standard. I'll also say that I've read enough standards documents that propose meaningless or contradictory practices that it has made me (personally) a bit jaded on the subject. – LBushkin Feb 17 '10 at 13:28
1  
The document may have been documenting .NET 1.1, which didn't optimize for foreach enumerators as well as later versions of .NET – Andrew Arnott Dec 24 '12 at 16:39
show 4 more comments

I think that the reason for that statement is that it's written prior to .NET 2.0.

When using foreach in .NET 1.x it was using the IEnumerable interface (as the IEnumerable<T> interface didn't exist yet.) When iterating over a value type collection, the enumerator would box each item to be able to return it as an object reference, then the foreach code had to unbox it.

A string array is of course not an example of an array of value types. An integer array is.

share|improve this answer
Even an integer array wouldn't make sense though, as the C# compiler treats arrays differently when you use foreach. – Jon Skeet Feb 16 '10 at 13:24
@Jon: Yes, a foreach over an array is highly optimised in the current implementation, but it might not have been in the earliest versions. – Guffa Feb 16 '10 at 15:04
I think it's always been optimised - in fact, it makes more sense for it to have been optimised before generics than after, to avoid boxing. – Jon Skeet Feb 16 '10 at 15:12

I agree with Jon that the advice makes little sense. My guess is that the author discovered that you cannot change the value of the current item when iterating. However, if you're iterating a collection of reference types you can still modify the object the current item points to. Perhaps (s)he concluded that iteration was somehow broken for value type collections.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.