I ran across an interesting performance comparison tool at businessintelligence.me
This could be very useful for code optimization and for a general understanding of what’s going on behind the scenes.
Perhaps the most striking comparisons in this tool are the ones that compare Vectors to Arrays. Looping Vectors appears to be about 60x faster than looping through Arrays. Someone recently asked me when you would want to use Vectors and my response was whenever you possibly can. And if you think about it, the times which you need an untyped Array are (should be) almost never.
