vote up -4 vote down star

Why would you use one over the other?

flag
2  
elseif does not exist in C#. Can you clarify your question please. – Colin Mackay Jul 20 at 13:29
2  
Honestly: who cares? – Bombe Jul 20 at 13:29
5  
@Bombe The compiler will care! – Colin Mackay Jul 20 at 13:30
4  
@Earwicker - your new question has nothing to do with his original question. If you were to change anything, it would have been the tag it had since it is not applicable to C#. But clearly he wants to know why, in some language, you can use one or the other and why you would choose one. – Matt Jul 20 at 13:34
1  
@Kip it's a shame, because the current question, as Earwicker rephrased it, has nothing to do with the original, which I actually think was a decent question if phrased differently. – Matt Jul 20 at 13:37
show 10 more comments

7 Answers

vote up 7 vote down

C# doesn't have any elseif construct. It just has if and else. else if is essentially an if statement as the body of else, not a special construct:

if (x) {
  // body1
} else if (y) { 
  // body2
}

is really:

if (x) {
  // body1
} else {
  if (y) {
     //body2
  }
}

Languages such as VB have that construct since they have a special way to terminate each block (End If).

link|flag
vote up 6 vote down

I am not aware of elseif existing in c#, so I go with else if.

link|flag
I'm pretty sure it doesn't... But either way, else if reads nicer. – Matthew Scharley Jul 20 at 13:28
I wasted a few hours a few weeks ago because in Oracle, it's "elsif". Go figure. – Charles Bretana Jul 20 at 13:30
it doesn't, I pretty sure, but there is an #elif with directives – curtisk Jul 20 at 13:30
Reminds me when in OQL i lost 2h because NULL was 'NILL' – Clement Herreman Jul 20 at 13:31
vote up 2 vote down

There are some languages where both exist, and some people might insist that "else if" should technically be written on two levels of indentation because "else" and "if" are each unique statements:

if(x == 1)
  foo1();
else
  if(x == 2)
    foo2();
  else
    if(x == 3)
      foo3();
    else
      foo4();

It is also possible that a bad code formatting tool might format your code this way. In practice, though, I don't think there are many people who mind "else if" being treated as one statement

link|flag
vote up 1 vote down

Because one (else if) is legal syntax whereas the other (elseif) is not. There is, however, a complier directive (#elif) along these lines.

link|flag
vote up 1 vote down

This annoys me. C++ C# and java use else if, perl uses elsif, and python uses elif. But you asked specifically about C#, which only uses else if.

link|flag
vote up 1 vote down

elseif isn't valid syntax in C#. You might be thinking of PHP, where it is typically more idiomatic (and sometimes more correct) to use elseif.

The PHP manual points out that "elseif and else if will only be considered exactly the same when using curly brackets as in the above example. When using a colon to define your if/elseif conditions, you must not separate else if into two words, or PHP will fail with a parse error."

link|flag
vote up 1 vote down

C# doesnt have elseif. there is only "else if"

there is also #elif used in c# preprocessor.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.