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 / ramya

The continue statement passes control to the next iteration
of the enclosing iteration statement in which it appears
using System;
class ContinueTest
{
public static void Main()
{
for (int i = 1; i <= 10; i++)
{
if (i < 9)
continue;
Console.WriteLine(i);
}
}
}

o/p:
9
10

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What's difference between constants and static readonly?

1261


How do you declare an arraylist?

1025


How Is The Dll Hell Problem Solved In .net?

1069


What is the difference between “finalize” and “finally” methods in c#?

980


What does type safe mean in c#?

1046


What does mean before a string in c#?

1093


What is difference between dynamic and var in c#?

996


What is the difference between ienumerable and enumerator?

963


What is the difference between inheritance and abstract class?

940


What is thread.sleep()?

953


What is response redirect in c#?

942


What is use of abstract class in c#?

982


What is Wrapper class in dot net?

1114


what are the contents of an assembly ?

1046


What are expressions c#?

970