c# loop example - break vs continue
loop-break-vs-continue.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
Label1.Text = "";
Label1.Text += "Loop: ";
for (int i = 0; i < 5; i++)
{
Label1.Text += i + "|";
}
Label1.Text += "<br />Using break[if i==3]: ";
for (int i = 0; i < 5; i++)
{
if (i == 3)
{
break;
//loop exit here
}
Label1.Text += i + "|";
}
Label1.Text += "<br />Using continue[if i==3]: ";
for (int i = 0; i < 5; i++)
{
if (i == 3)
{
continue;
//loop escape this index
}
Label1.Text += i + "|";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# loop example - break vs continue</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# loop example - break vs continue
</h2>
<hr width="550" align="left" color="LightBlue" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="XX-Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="c# loop - break vs continue"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
