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#?

Answers were Sorted based on User's Feedback



What?s different about switch statements in C#?..

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

What?s different about switch statements in C#?..

Answer / swapna

No fall-throughs allowed.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Sharp Interview Questions

how to store the value in textbox using delegates if we have two user control. the value will be called from one user control to another user control. Loading and unloading will be done through delegates.

1 Answers  


What is a boolean c#?

0 Answers  


Explain metadata in c#.

0 Answers  


Explain the difference between a struct and a class?

0 Answers  


What is the use of return in c#?

0 Answers  


Why are strings in c# immutable?

0 Answers  


What are access modifiers used for?

0 Answers  


Is list passed by reference c#?

0 Answers  


What are the namespace level elements?

0 Answers  


List the difference between interface and abstract class?

0 Answers  


Why do we need serialization?

0 Answers  


Why do we need reflection in c#?

0 Answers  


Categories