我可以重启foreach循环吗

我可以重启foreach循环吗

本文介绍了如果集合发生变化,我可以重启foreach循环吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何重置foreach中的集合,以便在foreach循环中从

读取更改,然后在集合已经更改后重新启动foreach

更改?


foreach(findListBox.listBox2.Items中的字符串发票)

{

listBox2.Items计数已更改,重启此foreach

}


感谢您的帮助。

Trint

-

Trinity Smith

c#/ vb.Net开发商

EcoQuest,Intl。

How can I reset the collections within a foreach to be read as a change from
within the foreach loop then restart the foreach after collections has been
changed?

foreach(string invoice in findListBox.listBox2.Items)
{
listBox2.Items count changed, restart this foreach
}

Thanks for any help.
Trint
--
Trinity Smith
c#/vb.Net Developer
EcoQuest, Intl.

推荐答案






这篇关于如果集合发生变化,我可以重启foreach循环吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 19:02