Which loop to use, for or do/while?

后端 未结 13 980
Happy的楠姐
Happy的楠姐 2021-01-19 23:02

Using C# (or VB.NET) which loop (for loop or do/while loop) should be used when a counter is required?

Does it make a difference if the loop should only iterate a se

13条回答
  •  盖世英雄少女心
    2021-01-19 23:29

    How about the best of both worlds:

    for (int iLoop = 0; iLoop < int.MaxValue && !Criteria; iLoop++)
    

    Edit: Now that I think about it, I suppose comparing against int.MaxValue wasn't part of the criteria, but something to emulate an endless for loop, in that case you could just use:

    for (int iLoop = 0; !Criterea; iLoop++)
    

提交回复
热议问题