Anonymous
public text v1 · immutableheres a cool trick if you need to loop a very large collection:
seems about 10-15% faster than checking the limit every iteration
Code:
int len = 300000000;
ushort[] a = new ushort[len];
try
{
uint ac = 0;
while (true)
{
a[ac] = 100;
ac++;
}
}
catch (IndexOutOfRangeException e2)
{
}
// wow that was fast