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.

How can I create a post-condition that ensures that all items in a collection are the same?

I was thinking of using this solution but I'm unsure whether that might cause some unwanted side-effects or if it would be a wrong use of code contracts.

share|improve this question

1 Answer

up vote 1 down vote accepted

The linked code appears to be side-effect free, so I wouldn't worry about that. I recommend putting the code that checks the all-equal condition into its own (pure) function, and simply calling that.

Contract.Ensures(AllEqual(myEnumeration));

This means that AllEqual need to be at least as visible as your method itself, but I think it will make everything cleaner.

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.