M
mr_ST
Rico Mariani привел один интересный пример:
// #1
// #2
Итак вопрос знатокам Что быстрее #1 или #2? Измеряем производительность только метода Sum.
Код:
public int Sum(IList<ushort> indices)
{
int result = 0;
for (int i = 0; i < indices.Count; i++)
result += indices[i];
return result;
}
// #1
Код:
ushort[] tmp = new ushort[500000]; // this doesn't count
Sum(tmp); // this is what we are timing
// #2
Код:
List<ushort> tmp = new List<ushort>(500000); // this doesn't count
for (int i = 0; i < 500000; i++) tmp.Add(0); // this doesn't count
Sum(tmp); // this is what we are timing
Итак вопрос знатокам Что быстрее #1 или #2? Измеряем производительность только метода Sum.