foreach循环中还能再放foreach循环么,如何实现?

2024-12-22 09:36:27
推荐回答(2个)
回答1:

嵌套循环肯定是可以的啊 一般不用2个foreach 2个for比较容易实现

回答2:

froeach可以放foreach
比如 foreach (person in persons)
{
foreach (string phonenum in person.phonenums)
{

}
}

对应 若干个人有若干个手机号码的情况