本文介绍了如何在C#中退出for循环的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在C#中退出for循环的sytax是什么?

What is the sytax for exiting a for loop in C#?

推荐答案






继续;将在当前循环中停止处理并直接跳到

下一步


休息;将退出整个循环



continue; will stop processing in the current loop and jump straight to the
next

break; will exit the entire loop





for(..)

{

...

休息;

}


Aaron



for(..)
{
...
break;
}

Aaron


这篇关于如何在C#中退出for循环的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 09:52