Exit For Loop particular Value

Jayakumars
Posted by Jayakumars under ASP.NET AJAX category on | Points: 40 | Views : 1342
Exit For Loop particular Value
==============================
for (int i = 1; i <= 10; i++)
{
if (i == 4)
{
return;
}
}

Comments or Responses

Login to post response