for (int i = 0; i < values.Count; i++) { // }
VS
int num = values.Count; for(int=0; i<num; i++) { }
我认为第二种方法更好,因为您不需要在每次迭代中计数所有项目.但我可能错了.有人可以照亮我吗?