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?s different about switch statements in C#?

Answer Posted / ranganathkini

C#'s switch statements have the following features:

1. It does not allow automatic fallthrough in non-empty
cases. Example:

int i;
switch( i ) {
case 0:
// FALL THRU ALLOWED
case 1:
Console.WriteLine( "The case is 1" );
// FALL THRU NOT-ALLOWED, break or goto required
default:
Console.WriteLine( "Unknown case" );
break;
case 2:
Console.WriteLine( "The case is greater than 1" );
break;

}

2. The order of the default case does not manner. It need
not have to be the last case. Illustrated in the above example.

3. Unlike C++ or Java, C#'s switch allows a variable of type
string to be tested. Example:

Console.Write( "Enter name of country: " );
string country = Console.ReadLine();
switch( country ) {
case "India":
Console.WriteLine( "Welcome to India" );
break;
case "USA":
Console.WriteLine( "Welcome to USA" );
break;
default:
goto case "India";
}

4. Use of goto statement to switch from one case label to
another. See above example.

Is This Answer Correct ?    8 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between interface and inheritance in c#?

875


List the different stages of a thread?

849


What all details the assembly manifest will contain?

798


What is a static class in c#?

949


How do I type a whitespace character?

1011


How to add a readonly property in c#.net

899


What does int32 mean in c#?

857


Explain About multi level and multiple inheritance how to achieve in .net

997


Is string a primitive data type in c#?

821


What is a property in c#?

865


Explain how obfuscator works in .net

961


What are concrete classes?

836


What is as keyword in c#?

938


Can extension methods access private members?

871


What can I create with c#?

872