Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is work of continue statement in C#?

Answer Posted / aditya n bokade ctrainer

continue statement skips a particular PASS of the loop.

continue statement:

--> skips all the statements mentioned after it inside a loop
--> goes to the next pass by incrementing counter variable

eg.

for (int i = 1; i <= 10; i++)
{
if (i % 2 == 0)
{
continue;
}
MessageBox.Show(i.ToString());//will be skipped when i is even
}

Is This Answer Correct ?    18 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is dll in vb.net?

988


What are methods in C#?

1000


What is literal in c#?

946


What is attribute c#?

897


What are the return types in c#?

1010


What is the difference between paramaterized constructor and copy constructor?

959


If a.equals(b) is true then a.gethashcode & b.gethashcode must always return same hash code.

1066


What is the extension of c# file?

1120


What is hashtable in c# with example?

1019


What is dbcontext c#?

1059


What are interfaces in c#?

1009


What is a helper method in c#?

976


Are multiple data types stored in System.Array?

1257


Explain the importance and use of each, version, culture and publickeytoken for an assembly.

993


What is the difference between System.console.WriteLine() and System.console.Write() function?example?

1122